Created
January 23, 2019 09:41
-
-
Save anubhavcodes/8052c250459040bfd8c3464e7402b7b0 to your computer and use it in GitHub Desktop.
Render markdown in terminal
This file contains 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
# Install the tools | |
brew install pandoc | |
brew install lynx | |
# Store this preferrably in ~/.profile | |
rmd () { | |
pandoc $1 | lynx -stdin | |
} | |
# Source it | |
source ~/.profile | |
# Render markdown | |
rmd /path/to/markdown.md | |
# Use q to quit. | |
# Thanks to https://tosbourn.com/view-markdown-files-terminal/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment