AppFlowy/frontend/rust-lib/flowy-document2/tests/assets/json/heading.json
Kilu.He dd9b1fb78f
feat: support converting documents to JSON, HTML, or TEXT. (#3811)
* feat: support converting documents to JSON, HTML, or TEXT

* fix: modify the comment

* fix: modify the comment
2023-10-30 12:50:31 +08:00

39 lines
558 B
JSON

{
"type": "page",
"data": {},
"children": [
{
"type": "heading",
"data": {
"level": 1,
"delta": [
{
"insert": "Heading1"
}
]
}
},
{
"type": "heading",
"data": {
"level": 2,
"delta": [
{
"insert": "Heading2"
}
]
}
},
{
"type": "heading",
"data": {
"level": 3,
"delta": [
{
"insert": "Heading3"
}
]
}
}
]
}