Rate this page:
The blockquote
node is a container for quotes.
blockquote
is a top-level block node.
1 2 3 4 5 6 7 8 9 10 11 12 13 14
{
"type": "blockquote",
"content": [
{
"type": "paragraph",
"content": [
{
"type": "text",
"text": "Hello world"
}
]
}
]
}
Name | Required | Type | Value |
---|---|---|---|
type | ✔ | string | "blockquote" |
content | ✔ | array | An array of nodes |
content
takes an array of one or more paragraph
nodes.
Rate this page: