aboutsummaryrefslogtreecommitdiff
path: root/scripts/md/render.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/md/render.py')
-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