The blockquote node is a container for quotes.
1 2 3 4 5 6bq( p("Hello world"), ul(li("foo"), li("bar")), p("\u2014 Atlassian Document Format") );
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57{ "type": "blockquote", "content": [ { "type": "paragraph", "content": [ { "type": "text", "text": "Hello world" } ] }, { "type": "bulletList", "content": [ { "type": "listItem", "content": [ { "type": "paragraph", "content": [ { "type": "text", "text": "foo" } ] } ] }, { "type": "listItem", "content": [ { "type": "paragraph", "content": [ { "type": "text", "text": "bar" } ] } ] } ] }, { "type": "paragraph", "content": [ { "type": "text", "text": "— Atlassian Document Format" } ] } ] }
Hello world
- foo
- bar
— Atlassian Document Format
| Confluence | Jira |
|---|---|
| ✅ | ✅ |
❌ N/A
blockquotelocalId, when present, will typically be a random UUID. This is not enforced by the schema.↩︎Rate this page: