Skip to content

Latest commit

 

History

History
18 lines (12 loc) · 469 Bytes

README.md

File metadata and controls

18 lines (12 loc) · 469 Bytes

markdown_mark

Extends the Python Markdown. Adds the possibility to use ==something== or ???something??? to create a span that looks like <mark>something</mark>

Install through pip:

pip install markdown_mark

To enable the markdown_mark package and use it in your markdown generation just add it like so:

import markdown

result = markdown.markdown(textToRender, extensions=["markdown_mark",])