diff options
-rw-r--r-- | pastepy.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -131,7 +131,7 @@ class Paste(object): def get_formatted(self, syntax, text): if syntax == 'md-render' and has_markdown: - text = markdown.markdown(text) + text = markdown.markdown(text, extensions = settings.markdown_extensions) lexername = 'Rendered markdown' else: try: |