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
Install
pip install tiptapy
Test
python -m pytest
Usage
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"
}
]
}
]
}
]
}
"""
class config:
"""
Config class to store constants used by the other nodes.
"""
DOMAIN = "python.org"
renderer = tiptapy.BaseDoc(config)
out = renderer.render(s)
print(out)
Output
<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.15.1.tar.gz
(8.9 kB
view details)
File details
Details for the file tiptapy-0.15.1.tar.gz
.
File metadata
- Download URL: tiptapy-0.15.1.tar.gz
- Upload date:
- Size: 8.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b8ed419d7ba75f026c4bdd2c47ab62d84451fe43501a1d9207dcd37672070eca |
|
MD5 | 0326089bbcbf7a0e6a9e1eb1bfc2ff99 |
|
BLAKE2b-256 | 7e2647c2e7e3a7328cdaf5b91e7bcb5c5488215eacde1e9a395b28bec1e897b8 |