The paragraph node is a container for a block of formatted text delineated by a carriage return. It’s the equivalent of the HTML <p> tag.
Implementation Note: In the Java library, most nodes that are frequently used with simple paragraph and text nodes also provide methods that accept String values for convenience. Where these are available, they implicitly wrap the strings in text and paragraph nodes as required.
1 2p("Hello world")
1 2 3 4 5 6 7 8 9 10{ "type": "paragraph", "content": [ { "type": "text", "text": "Hello world" } ] }
Hello world
| Confluence | Jira |
|---|---|
| ✅ | ✅ |
paragraphRate this page: