Metadata-Version: 2.4
Name: markdown-underline
Version: 0.1.1
Summary: Markdown extension to underline text using ++text++ syntax
Home-page: https://github.com/becksta-dev/markdown-underline
Author: Vinzenz Becke-Stauner (Becksta)
Author-email: info@becke-stauner.de
License: GPLv3
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: markdown>=3.0
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# Markdown Extension for Underline

This is an extension for Python Markdown (markdown) to support underlined text using ++ markers. 

```
This is ++underlined Text++ 
```

will be rendered as:

<p>This is <u>underlined Text</u></p>

# Installation

The markdown-underline package can be installed via:

```bash
pip install markdown-underline
```

# Usage

The following python code shows how to use the underline extension:

```
import markdown

text = "This is ++underlined Text++"

html = markdown.markdown(text, extensions=['underline'])
print(html)
```


