Metadata-Version: 2.4
Name: markdown-underline
Version: 0.1.3
Summary: Extension for Python-Markdown 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

[![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0)

# Markdown Extension for Underline

This is an extension for [Python-Markdown](https://pypi.org/project/Markdown/) to support underlined text using ++ markers. 

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

will be rendered to:

```html
<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)
```

# License

This project is licensed under the terms of the GNU General Public License v3.0.  
See the [LICENSE](./LICENSE) file for details.


