Skip to content
Michael Cotterell edited this page Dec 19, 2018 · 5 revisions

Welcome to the cs1302-exercises wiki!

Offline Rendering

Install Prerequisites

$ brew update
$ brew install pandoc
$ brew cask install wkhtmltopdf

Markdown to HTML

$ pandoc -s -c css/github-markdown.css -f gfm -t html5 -o README.html README.md
$ open README.html

Markdown to PDF

$ pandoc -s -c css/github-markdown.css -f gfm -t html5 -o README.pdf README.md
$ open README.pdf
Clone this wiki locally