Skip to content

Instantly share code, notes, and snippets.

@janbiasi
Created September 9, 2014 21:58
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save janbiasi/b23f7edf65455e0b29de to your computer and use it in GitHub Desktop.
Save janbiasi/b23f7edf65455e0b29de to your computer and use it in GitHub Desktop.
Export GitHub wiki as HTML files
#!/bin/bash
# for each md file in the directory
for file in *.md
do
# convert each file to html and place it in the html directory
# --gfm == use github flavoured markdown
marked -o pages/$file.html $file --gfm
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment