Skip to content

Python-Markdown extension to support the <del> and <ins> tags.

License

Notifications You must be signed in to change notification settings

aleray/mdx_del_ins

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

About

Python-Markdown extension to support the <del> and <ins> tags.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages