Wiki source code of Confluence bridge for Section
Last modified by Frank Fock on 2025/07/01 22:30
Hide last authors
| author | version | line-number | content |
|---|---|---|---|
| |
1.1 | 1 | {{toc/}} |
| 2 | |||
| 3 | = Description = | ||
| 4 | |||
| 5 | This macro is a bridge for the Confluence Section macro. This macro is used in conjunction with [[ConfluenceColumn]] to create sections of contents with columns. | ||
| 6 | |||
| 7 | = Parameters = | ||
| 8 | |||
| 9 | |=Parameter|=Name|=Description|=Default value | ||
| 10 | |border|Show Border|Select this option to draw a border around the columns, when they exist.|false | ||
| 11 | |||
| 12 | = Usage Examples = | ||
| 13 | |||
| 14 | {{excerpt}} | ||
| 15 | |||
| 16 | == Simple section without border == | ||
| 17 | |||
| 18 | {{code}} | ||
| 19 | {{confluence_section}} | ||
| 20 | Content of a simple section, without border. | ||
| 21 | {{/confluence_section}} | ||
| 22 | {{/code}} | ||
| 23 | |||
| 24 | {{confluence_section}} | ||
| 25 | Content of a simple section, without border. | ||
| 26 | {{/confluence_section}} | ||
| 27 | |||
| 28 | == Simple section with border, no column == | ||
| 29 | |||
| 30 | No border is added, because the borders are applied on columns, when they exist. | ||
| 31 | |||
| 32 | {{code}} | ||
| 33 | {{confluence_section border="true"}} | ||
| 34 | Content of a simple section, with border. | ||
| 35 | {{/confluence_section}} | ||
| 36 | {{/code}} | ||
| 37 | |||
| 38 | {{confluence_section border="true"}} | ||
| 39 | Content of a simple section, with border. | ||
| 40 | {{/confluence_section}} | ||
| 41 | |||
| 42 | == Simple section with border and column == | ||
| 43 | |||
| 44 | {{code}} | ||
| 45 | {{confluence_section border="true"}} | ||
| |
2.1 | 46 | {{confluence_column}} |
| |
1.1 | 47 | Content of a simple section, with border. |
| |
2.1 | 48 | {{/confluence_column}} |
| |
1.1 | 49 | {{/confluence_section}} |
| 50 | {{/code}} | ||
| 51 | |||
| 52 | {{confluence_section border="true"}} | ||
| |
2.1 | 53 | {{confluence_column}} |
| |
1.1 | 54 | Content of a simple section, with border. |
| |
2.1 | 55 | {{/confluence_column}} |
| |
1.1 | 56 | {{/confluence_section}} |
| 57 | |||
| 58 | == Section with 4 columns == | ||
| 59 | |||
| 60 | {{code}} | ||
| 61 | {{confluence_section border="true"}} | ||
| 62 | |||
| |
2.1 | 63 | {{confluence_column width="250px"}} |
| |
1.1 | 64 | Content in the column 1 |
| |
2.1 | 65 | {{/confluence_column}} |
| |
1.1 | 66 | |
| |
2.1 | 67 | {{confluence_column width="300px"}} |
| |
1.1 | 68 | Content in the column 2 |
| |
2.1 | 69 | {{/confluence_column}} |
| |
1.1 | 70 | |
| |
2.1 | 71 | {{confluence_column width="300px"}} |
| |
1.1 | 72 | Content in the column 3 |
| |
2.1 | 73 | {{/confluence_column}} |
| |
1.1 | 74 | |
| |
2.1 | 75 | {{confluence_column width="250px"}} |
| |
1.1 | 76 | Content in the column 4 |
| |
2.1 | 77 | {{/confluence_column}} |
| |
1.1 | 78 | |
| 79 | {{/confluence_section}} | ||
| 80 | {{/code}} | ||
| 81 | |||
| 82 | {{confluence_section border="true"}} | ||
| 83 | |||
| |
2.1 | 84 | {{confluence_column width="250px"}} |
| |
1.1 | 85 | Content in the column 1 |
| |
2.1 | 86 | {{/confluence_column}} |
| |
1.1 | 87 | |
| |
2.1 | 88 | {{confluence_column width="300px"}} |
| |
1.1 | 89 | Content in the column 2 |
| |
2.1 | 90 | {{/confluence_column}} |
| |
1.1 | 91 | |
| |
2.1 | 92 | {{confluence_column width="300px"}} |
| |
1.1 | 93 | Content in the column 3 |
| |
2.1 | 94 | {{/confluence_column}} |
| |
1.1 | 95 | |
| |
2.1 | 96 | {{confluence_column width="250px"}} |
| |
1.1 | 97 | Content in the column 4 |
| |
2.1 | 98 | {{/confluence_column}} |
| |
1.1 | 99 | |
| 100 | {{/confluence_section}} | ||
| 101 | {{/excerpt}} |