MarkdownHighlight

A markdown extension that enables you to create <mark> tag by using ???some text???


License
Apache-2.0
Install
pip install MarkdownHighlight==0.1.3

Documentation

markdown.highlight
==================

Adds the possibility to use "??? something ???" or "___ something ___" to create a span that looks like <mark>something</mark>

Install through pip:

$ pip install MarkdownHighlight

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

```
import markdown
from MarkdownHighlight.highlight import HighlightExtension

result = markdown.markdown(textToRender, output_format="html5", extensions=[HighlightExtension,]) )
```