In Confluence, the top-level doc node is allowed to include layoutSection nodes. These in turn contain exactly two or three layoutColumn nodes that wrap other content. The effect is similar to declaring a table with no visible border, exactly one tableRow and that number of tableCells within the row.
1 2 3 4 5layoutSection( layoutColumn(40).content(p("Hello world")), layoutColumn(60).content(p("Hello world again")) );
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{ "type": "layoutSection", "content": [ { "type": "layoutColumn", "attrs": { "width": 40 }, "content": [ { "type": "paragraph", "content": [ { "type": "text", "text": "Hello world" } ] } ] }, { "type": "layoutColumn", "attrs": { "width": 60 }, "content": [ { "type": "paragraph", "content": [ { "type": "text", "text": "Hello world again" } ] } ] } ] }
| Confluence | Jira |
|---|---|
| ✅ | ❌ |
layoutSectionlocalId, when present, will typically be a random UUID. This is not enforced by the schema.↩︎Rate this page: