Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 320 Bytes

README.md

File metadata and controls

16 lines (12 loc) · 320 Bytes

underlined

Simple Mistune plug-in that turns _ Markdown tags into <ul> instead of <em> HTML tags

Use

from mistune import Markdown
from underlined import underlined

md = 'this _text_ is underlined'
parser = Markdown()
underlined(parser)
html = parser(md)

this <ul>text</ul> is underlined