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.3.0.tar.gz
(4.7 kB
view hashes)
Built Distribution
Close
Hashes for discord_markdown-0.3.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 156e52a3cd0fd9349b1719936d0f4d5d10aee99c3503c78a2bb1ad9813ac44b8 |
|
MD5 | 59e4903a2313b3a088cfd524c5f4aaae |
|
BLAKE2b-256 | f5f4a108e8ad29e71881aeb547ec0704575984956acad2d1323e1f2e985870eb |