Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

AsciiDoc tables are converted to Confluence tables. The following table features are supported:

Anchor
_simple_table
_simple_table
Simple Table

A table without header row.

No Format
[cols="2"]
|===
| A1
| A2

| B1
| B2
|===
A1A2
B1B2

Anchor
_table_with_header
_table_with_header
Table with Header

A table with first row as header.

...

No Format
[cols="2", options="header"]
|===
| Column 1
| Column 2

| A1
| A2

| B1
| B2
|===
Column 1Column 2
A1A2
B1B2

Anchor
_table_with_styled_text
_table_with_styled_text
Table with Styled Text

A table with bold/italic text.

No Format
[cols="2", options="header"]
|===
| Column 1
| Column 2

| _A1_
| _A2_

| *B1*
| *B2*
|===
Column 1Column 2
A1A2
B1B2

Anchor
_table_with_col_span
_table_with_col_span
Table with Col Span

No Format
[cols="3", options="header"]
|===
| Column 1
| Column 2
| Column 3

2+| A1 & A2
| A3

| B1
| B2
| B3
|===
Column 1Column 2Column 3
A1 & A2A3
B1B2B3

Anchor
_table_with_row_span
_table_with_row_span
Table with Row Span

No Format
[cols="2", options="header"]
|===
| Column 1
| Column 2

.2+| A1
| A2
| A3

| B1
| B2
|===
Column 1Column 2
A1A2
A3
B1B2

Anchor
_table_with_asciidoc_cell
_table_with_asciidoc_cell
Table with AsciiDoc Cell

Table cells may also contain structured content, e.g. bullet lists:

...