I'm looking for a Python module that can process markdown but where I can disable any of the features (and thus use a custom subset of the markup, while leaving the rest un-processed).
The Markdown module seems extensible, but it I don't see how can I disable certain rules.
The Markdown2 module has something they call "extras", but it's all built in, and the code looks horribly constructed and not easily exstensible.
To be clear, my question here is, does such a module exist, or am I better off implementing my own (or forking one of the above modules).