summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/static_page.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/static_page.rb b/lib/static_page.rb
index b4bc40d..6ad0c51 100644
--- a/lib/static_page.rb
+++ b/lib/static_page.rb
@@ -349,7 +349,7 @@ class StaticPage
}
def render_pandoc(string, suffix, locale)
- args = [string, {:from => PANDOC_FORMATS[suffix], :to => :html5}, "smart"]
+ args = [string, {:from => PANDOC_FORMATS[suffix], :to => :html}, "smart"]
if props.locale(locale).toc != false
args << "table_of_contents"
args << {"template" => "'#{File.dirname(__FILE__) + '/template.html'}'"}