No description
Find a file
randogoth 8600af988f fix
2023-05-19 12:09:49 +03:00
.gitignore Initial commit 2023-05-19 09:56:00 +01:00
LICENSE Initial commit 2023-05-19 09:56:00 +01:00
README.md fix 2023-05-19 12:09:49 +03:00
underlined.py init 2023-05-19 12:07:57 +03:00

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