Skip to content

Latest commit

 

History

History
37 lines (23 loc) · 801 Bytes

README.md

File metadata and controls

37 lines (23 loc) · 801 Bytes

Del/Ins Extension for Python-Markdown

Wraps the inline content with ins and del tags.

Installation

pip install git+git://github.com/aleray/mdx_del_ins.git

Usage

>>> 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>

Dependencies

Copyright

2011, 2012 The active archives contributors All rights reserved.

This software is released under the modified BSD License. See LICENSE.md for details.