Node - blockquote

Purpose

The blockquote node is a container for quotes.

Type

blockquote is a top-level block node.

Example

1
2
{
  "type": "blockquote",
  "content": [
    {
      "type": "paragraph",
      "content": [
        {
          "type": "text",
          "text": "Hello world"
        }
      ]
    }
  ]
}

Fields

NameRequiredTypeValue
typestring"blockquote"
contentarrayAn array of nodes

Content

content must contain array of one or more of the following nodes:

Rate this page: