tiptapy 0.6.8
pip install tiptapy==0.6.8
Newer version available (0.21.0)
Released:
Library that generates HTML output from JSON export of tiptap editor
Navigation
Unverified details
These details have not been verified by PyPIProject links
Meta
- License: MIT License (http://www.opensource.org/licenses/mit-license.php)
- Author: Shekhar Tiwatne
Classifiers
- License
- Operating System
- Programming Language
Project description
Tiptapy
Library that generates HTML output from JSON export of tiptap editor
Install
pip install tiptapy
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"
}
]
}
]
}
]
}
"""
out = tiptapy.to_html(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
Unverified details
These details have not been verified by PyPIProject links
Meta
- License: MIT License (http://www.opensource.org/licenses/mit-license.php)
- Author: Shekhar Tiwatne
Classifiers
- License
- Operating System
- Programming Language
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
File details
Details for the file tiptapy-0.6.8.tar.gz
.
File metadata
- Download URL: tiptapy-0.6.8.tar.gz
- Upload date:
- Size: 4.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
0f429dccb0e10e059467ec57a85ae82f79df25eb92d887aa68f90bee44afe02d
|
|
MD5 |
ee2532bb564b6d2b2908363f5d6e1045
|
|
BLAKE2b-256 |
d0bbc25e3c3ebb91de03e6c42a53b66241308a6e7d02c4f5feff366976dbabe6
|