Skip to content

Instantly share code, notes, and snippets.

@tstellanova
Last active February 14, 2024 12:56
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tstellanova/cf3076c005f8bceb0a8e22d149f341e5 to your computer and use it in GitHub Desktop.
Save tstellanova/cf3076c005f8bceb0a8e22d149f341e5 to your computer and use it in GitHub Desktop.
How to view Markdown documents more easily in Mac OSX Terminal
  • Install a couple of tools (markdown renders markdown as html, and the lynx browser) using homebrew:
brew install markdown lynx
  • When you want to view a markdown document from the commandline, render it with markdown and pipe the output to lynx:
markdown README.md | lynx -stdin
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment