From: Kalle R. <kal...@ho...> - 2015-04-29 11:57:40
|
Hi everyone, I'm trying to extend Python Markdown so that --- would be converted to an em-dash. For this, I built up an inline-pattern which matches --, and returns "—" from handleMatch(). Unfortunately, this gets to converted to "&mdash;" by Python Markdown. How can I get the — through without changes? Kalle |