Created
May 7, 2015 04:48
-
-
Save johana-star/c7c2e4e9c4eff4b0e22d to your computer and use it in GitHub Desktop.
The beginning of a site generator using Pandoc.
This file contains hidden or 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 | |
for file in `ls ./posts/*.markdown` | |
do | |
shortname=`expr $file : '.*[[:digit:]]-\(.*\).markdown' ` | |
pandoc --smart \ | |
--from=markdown+yaml_metadata_block \ | |
$file \ | |
--output ./site/$shortname .html | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment