Library that generates HTML output from JSON export of tiptap editor
Project description
tiptapy
Library that generates HTML output from JSON export of tiptap editor
import tiptapy
s = """
{
"type": "doc",
"content": [
{
"type": "blockquote",
"content": [
{
"type": "paragraph",
"content": [
{
"type": "text",
"text": "Readability counts."
}
]
},
{
"type": "paragraph",
"content": [
{
"type": "text",
"marks": [
{
"type": "link",
"attrs": { "href": "https://en.wikipedia.org/wiki/Zen_of_Python" }
}
],
"text": "Zen of Python"
},
{
"type": "text", "text": " By "
},
{
"type": "text",
"marks": [
{
"type": "bold"
}
],
"text": "Tom Peters"
}
]
}
]
}
]
}
"""
out = tiptapy.to_html(s)
print(out)
<blockquote>
<p>Readability counts.</p>
<p>
<a href="https://en.wikipedia.org/wiki/Zen_of_Python">Zen of Python</a> By
<strong>Tom Peters</strong>
</p>
</blockquote>
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
tiptapy-0.4.0.tar.gz
(2.5 kB
view details)
File details
Details for the file tiptapy-0.4.0.tar.gz
.
File metadata
- Download URL: tiptapy-0.4.0.tar.gz
- Upload date:
- Size: 2.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4266fde06ab1aae6af15501ee18900315efdd218a4da62d68e163cfbeb95188a |
|
MD5 | b87118617afca416609c886224f0b865 |
|
BLAKE2b-256 | ea63a4c532c4b903750bf81dee1eeb3df2da7d62a445b1f255471d2471e158ba |