Developer
News and Updates
Get Support
Sign in
Get Support
Sign in
DOCUMENTATION
Cloud
Data Center
Resources
Sign in
Sign in
DOCUMENTATION
Cloud
Data Center
Resources
Sign in
Last updated Sep 1, 2026

ADF node: paragraph

Node

Description

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.

Example

Java

1
2
p("Hello world")

ADF

1
2
3
4
5
6
7
8
9
10
{
  "type": "paragraph",
  "content": [
    {
      "type": "text",
      "text": "Hello world"
    }
  ]
}

Result

Hello world

Compatibility

Products

ConfluenceJira

Nodes/Usage

Marks

Structure


  1. Although paragraph nodes are usually permitted to have a mark, such as alignment or indentation, these are not permitted in most of the cases where the paragraph is within another block element.↩︎
  2. Although paragraph nodes are usually permitted to have a mark, such as alignment or indentation, these are not permitted in most of the cases where the paragraph is within another block element.↩︎
  3. Although paragraph nodes are usually permitted to have a mark, such as alignment or indentation, these are not permitted in most of the cases where the paragraph is within another block element.↩︎
  4. Although paragraph nodes are usually permitted to have a mark, such as alignment or indentation, these are not permitted in most of the cases where the paragraph is within another block element.↩︎
  5. Although paragraph nodes are usually permitted to have a mark, such as alignment or indentation, these are not permitted in most of the cases where the paragraph is within another block element.↩︎
  6. Although paragraph nodes are usually permitted to have a mark, such as alignment or indentation, these are not permitted in most of the cases where the paragraph is within another block element.↩︎
  7. Although paragraph nodes are usually permitted to have a mark, such as alignment or indentation, these are not permitted in most of the cases where the paragraph is within another block element.↩︎
  8. It is not clear why paragraph nodes inside a table cell can only use alignment, not indentation, especially since heading nodes do not have this same limitation. Nevertheless, that is what the schema says.↩︎

Rate this page: