aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Bidelman2012-10-20 16:38:47 +0900
committerEric Bidelman2012-10-20 16:38:47 +0900
commit1e5ccd449dfd0416a3c75a3941d5b9444001fd2a (patch)
tree51d208241ef51f2510ff34d557ed4132874ced12
parenta56a1bc6e3070c86f3a6804d0fd7ecf1ad08fabd (diff)
downloadio-slides-remote-1e5ccd449dfd0416a3c75a3941d5b9444001fd2a.tar.gz
metadata should be passed, not markdown module
-rwxr-xr-xscripts/md/render.py2
1 files changed, 1 insertions, 1 deletions
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():
25 # Get the content from the rest of the slide. 25 # Get the content from the rest of the slide.
26 content_section = '\n\n'.join(sections[remainder_index:]) 26 content_section = '\n\n'.join(sections[remainder_index:])
27 html = markdown.markdown(content_section) 27 html = markdown.markdown(content_section)
28 slide['content'] = postprocess_html(html, markdown) 28 slide['content'] = postprocess_html(html, metadata)
29 29
30 slides.append(slide) 30 slides.append(slide)
31 31