Convert discord messages to HTML
Project description
Discord Markdown
I needed to render some Discord chat logs as HTML, and found that the Markdown implementation in Discord isn't quite compliant with Common Markdown as Discord uses a simplified version.
So I wrote this library that allows you to convert a discord message written in the Markdown formatting syntax specified here to html.
Installation
You can install the library from pypi
:
pip install discord-markdown
Usage
from discord_markdown.discord_markdown import convert_to_html
text = "_This_ **is** an __example__.\nThis should be a different paragraph."
html = convert_to_html(text)
assert html == '<p><i>This</i> <b>is</b> an <u>example</u>.</p><p>This should be a different paragraph.</p>'
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
discord_markdown-0.4.0.tar.gz
(4.8 kB
view hashes)
Built Distribution
Close
Hashes for discord_markdown-0.4.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 94dce3ee4f0f6e889dae26fe8505f9d9ae14872957931da58c368553670f5243 |
|
MD5 | 91bfd65f6634023c3882ee61ee4a3f8a |
|
BLAKE2b-256 | b4f118f2e17aa8ace1930625b9e75c31ebe74dc599c47962719b773bcc2298ee |