Skip to content

Instantly share code, notes, and snippets.

@mtreg
Created January 7, 2016 22:31
Show Gist options
  • Save mtreg/a6abb54cf1f0108f6ab8 to your computer and use it in GitHub Desktop.
Save mtreg/a6abb54cf1f0108f6ab8 to your computer and use it in GitHub Desktop.
Markdown to HTML via Pandoc with appropriate header and footer
#!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