This is an extension for Python-Markdown to support underlined text using ++ markers.
This is ++underlined Text++
will be rendered to:
<p>This is <u>underlined Text</u></p>
The markdown-underline package can be installed via:
pip install markdown-underline
The following python code shows how to use the underline extension:
import markdown
text = "This is ++underlined Text++"
html = markdown.markdown(text, extensions=['underline'])
print(html)
This project is licensed under the terms of the GNU General Public License v3.0.
See the LICENSE file for details.