Created
January 7, 2016 22:31
-
-
Save mtreg/a6abb54cf1f0108f6ab8 to your computer and use it in GitHub Desktop.
Markdown to HTML via Pandoc with appropriate header and footer
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
#!bin/bash | |
pandoc ../CourseInfo/Syllabus.md -o syllabus_tmp.html; | |
cat html_head.html syllabus_tmp.html html_foot.html > ../Syllabus.html; | |
rm syllabus_tmp.html |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment