diff options
-rwxr-xr-x | pagerender.rb | 6 | ||||
-rw-r--r-- | public/bash-arrays.md | 1 |
2 files changed, 6 insertions, 1 deletions
diff --git a/pagerender.rb b/pagerender.rb index 3edaaaf..67c5aab 100755 --- a/pagerender.rb +++ b/pagerender.rb @@ -18,7 +18,11 @@ infile = ARGV.first Pandoc::prog='pandoc' input = File.read(infile) -doc = Pandoc::load('markdown-markdown_in_html_blocks', input) +doc = Pandoc::load('markdown', input) + +if doc['markdown_options'] + doc = Pandoc::load('markdown'+doc['markdown_options'], input) +end @title = doc['title'] || input.split("\n",2).first @author = doc['author'] || "Luke Shumaker" diff --git a/public/bash-arrays.md b/public/bash-arrays.md index e7f5842..bf27dcb 100644 --- a/public/bash-arrays.md +++ b/public/bash-arrays.md @@ -2,6 +2,7 @@ Bash arrays =========== --- date: "2013-10-13" +markdown_options: "-markdown_in_html_blocks" --- Way too many people don't understand Bash arrays. Many of them argue |