Metadata-Version: 2.1
Name: discord-markdown
Version: 0.2.1
Summary: Convert discord messages to HTML
Home-page: https://github.com/bitjockey42/discord-markdown
License: MIT
Author: BitJockey
Author-email: bitjockey@jackpoint.network
Requires-Python: >=3.6,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Project-URL: Repository, https://github.com/bitjockey42/discord-markdown
Description-Content-Type: text/markdown

# Discord Markdown

I needed to parse some Discord chat logs for something, and found that the Markdown implementation isn't compliant with Common Markdown as Discord uses a simplified version.

This is very early stage and probably won't be ready for use for awhile.

```python
from discord_markdown.discord_markdown import convert_to_html

convert_to_html("_This_ **is** an __example__.\nThis should be a different paragraph.")
```

