Last active
May 27, 2024 20:32
-
-
Save A/49199a401840ce3bc359 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Pandoc is awesome! | |
| # http://johnmacfarlane.net/pandoc/ | |
| ## Download shell documentation as epub book: | |
| pandoc -s -r html https://www.gnu.org/software/bash/manual/bashref.html -o bash.epub | |
| ## Download article as markdown: | |
| pandoc -s -r html http://www.farnamstreetblog.com/2014/04/how-complex-systems-fail/ -o ./_drafts/how-complex-systems-fail.md | |
| ## Convert markdown sources to many other formats | |
| pandoc sources.md -o largescale-js.epub --toc-depth=2 --epub-cover-image=cover.jpg --epub-chapter-level=2 # .epub | |
| pandoc sources.md -o largescale-js.fb2 --toc-depth=2 --epub-cover-image=cover.jpg --epub-chapter-level=2 # .fb2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment