diff options
author | Eric Bidelman | 2012-10-20 16:38:47 +0900 |
---|---|---|
committer | Eric Bidelman | 2012-10-20 16:38:47 +0900 |
commit | 1e5ccd449dfd0416a3c75a3941d5b9444001fd2a (patch) | |
tree | 51d208241ef51f2510ff34d557ed4132874ced12 /scripts/md/render.py | |
parent | a56a1bc6e3070c86f3a6804d0fd7ecf1ad08fabd (diff) | |
download | io-slides-remote-1e5ccd449dfd0416a3c75a3941d5b9444001fd2a.tar.gz |
metadata should be passed, not markdown module
Diffstat (limited to 'scripts/md/render.py')
-rwxr-xr-x | scripts/md/render.py | 2 |
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 | ||