Skip to content

Instantly share code, notes, and snippets.

@bastilian
Last active October 12, 2018 09:30
Show Gist options
  • Save bastilian/d8bf3fba6cdb5254ec33 to your computer and use it in GitHub Desktop.
Save bastilian/d8bf3fba6cdb5254ec33 to your computer and use it in GitHub Desktop.
readme formats a markdown readme in the zsh
readme () {
mdless $(ls | grep -i readme)
}
# from http://blog.metamatt.com/blog/2013/01/09/previewing-markdown-files-from-the-terminal/
mdless () {
pandoc -s -f markdown -t man "$*" | groff -T utf8 -man | less;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment