From b57499cb00012ffb364ca0cb3095ec572ce85d4d Mon Sep 17 00:00:00 2001 From: Simon Conseil Date: Sat, 23 Aug 2014 18:06:43 +0200 Subject: [PATCH] Use HTML5 output for Markdown. --- sigal/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sigal/utils.py b/sigal/utils.py index 9d5201e..bdefe1b 100644 --- a/sigal/utils.py +++ b/sigal/utils.py @@ -58,7 +58,7 @@ def read_markdown(filename): with codecs.open(filename, 'r', 'utf-8-sig') as f: text = f.read() - md = Markdown(extensions=['meta']) + md = Markdown(extensions=['meta'], output_format='html5') html = md.convert(text) return {