Rate this page:
The hardBreak
node inserts a new line in a text string. It's the equivalent to a <br/> in HTML.
hardBreak
is an inline node.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
{
"version": 1,
"type": "doc",
"content": [
{
"type": "paragraph",
"content": [
{
"type": "text",
"text": "Hello"
},
{
"type": "hardBreak"
},
{
"type": "text",
"text": "world"
}
]
}
]
}
Name | Required | Type | Value |
---|---|---|---|
type | ✔ | string | "hardBreak" |
attrs | object | ||
attrs.text | string | "\n" |
Rate this page: