From 1e5ccd449dfd0416a3c75a3941d5b9444001fd2a Mon Sep 17 00:00:00 2001 From: Eric Bidelman Date: Sat, 20 Oct 2012 16:38:47 +0900 Subject: metadata should be passed, not markdown module --- scripts/md/render.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/md/render.py b/scripts/md/render.py index fa4aaf7..edc667d 100755 --- a/scripts/md/render.py +++ b/scripts/md/render.py @@ -25,7 +25,7 @@ def process_slides(): # Get the content from the rest of the slide. content_section = '\n\n'.join(sections[remainder_index:]) html = markdown.markdown(content_section) - slide['content'] = postprocess_html(html, markdown) + slide['content'] = postprocess_html(html, metadata) slides.append(slide) -- cgit v1.2.3