Wraps the inline content with ins
and del
tags.
pip install git+git://github.com/aleray/mdx_del_ins.git
>>> import markdown
>>> src = """This is ++added content++ and this is ~~deleted content~~"""
>>> html = markdown.markdown(src, ['del_ins'])
>>> print(html)
<p>This is <ins>added content</ins> and this is <del>deleted content</del>
</p>
2011, 2012 The active archives contributors All rights reserved.
This software is released under the modified BSD License. See LICENSE.md for details.