Excerpt Macro
Last modified by Frank Fock on 2024/05/23 17:17
Description
The Excerpt macro is a bridge between Confluence and XWiki. It allows the user to mark part of the page's content for use by other macros.
Parameters
Parameter | Description | Default |
---|---|---|
atlassian-macro-output-type | The ouput type. It can be either BLOCK or INLINE. | INLINE |
hidden | If true, the content of the macro will be hidden. | false |
Example of usage
Example of excerpt with HTML :
{{excerpt}}
|=Title1|=Title2|=Title3
|Text1|Text2|Text3
{{/excerpt}}
|=Title1|=Title2|=Title3
|Text1|Text2|Text3
{{/excerpt}}
The result is the following :
Title1 | Title2 | Title3 |
---|---|---|
Text1 | Text2 | Text3 |
Example of hidden excerpt :
{{excerpt hidden="true"}}
My hidden content.
{{/excerpt}}
My hidden content.
{{/excerpt}}
The result is the following :
My hidden content.