Skip to content

Instantly share code, notes, and snippets.

@anubhavcodes
Created January 23, 2019 09:41
Show Gist options
  • Save anubhavcodes/8052c250459040bfd8c3464e7402b7b0 to your computer and use it in GitHub Desktop.
Save anubhavcodes/8052c250459040bfd8c3464e7402b7b0 to your computer and use it in GitHub Desktop.
Render markdown in terminal
# 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