# underlined
Simple Mistune plug-in that turns `_` Markdown tags into `
` instead of `` HTML tags
## Use
```Python
from mistune import Markdown
from underlined import underlined
md = 'this _text_ is underlined'
parser = Markdown()
underlined(parser)
html = parser(md)
```
> this is underlined