Skip to content

Commit

Permalink
markdown: Enable smart_angled_quotes
Browse files Browse the repository at this point in the history
Enable smart_angled_quotes option for the SmartyExtension extension to
markdown so that <<foo>> becomes &laquo;bla&raquo.
  • Loading branch information
donald committed Jan 4, 2020
1 parent fe9e101 commit 1199959
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mpicms/base/templatetags/md_tags.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def markdown(text):
CodeHiliteExtension(),
Nl2BrExtension(),
SaneListExtension(),
SmartyExtension(),
SmartyExtension(smart_angled_quotes=True),
TocExtension(),
]
)
Expand Down

0 comments on commit 1199959

Please sign in to comment.