I seem to be getting apostrophes getting replaced with quotes. Eg:
there's one for the books... 'test'.
gets converted to
<p>there’s one for the books… ‘test’.</p>
In "there's", it's supposed to be ' rather than ‘.
My configuration is:
md = markdown.Markdown(extensions=['markdown.extensions.smarty'], output_format='html5')
md.convert("there's one for the books... 'test'.")