Files
Client/test/widget/prosemirror/fixtures/callout.json
T

52 lines
867 B
JSON

{
"type": "doc",
"content": [
{
"type": "callout",
"attrs": {
"variant": "info"
},
"content": [
{
"type": "paragraph",
"attrs": {
"textAlign": "left"
},
"content": [
{
"type": "text",
"text": "Ein wichtiger Hinweis."
}
]
}
]
},
{
"type": "callout",
"attrs": {
"variant": "warning"
},
"content": [
{
"type": "paragraph",
"attrs": {
"textAlign": "left"
},
"content": [
{
"type": "text",
"text": "Achtung."
}
]
}
]
},
{
"type": "paragraph",
"attrs": {
"textAlign": null
}
}
]
}