The Info macro allows you to highlight helpful information on a Confluence page. It creates a blue-coloured box surrounding your text, as shown below.
This text is rendered inside the info macro. |
To add the Info macro to a page:
Parameter | Default | Description |
|---|---|---|
Optional Title | none | The title of the information box. If specified, the title text will be displayed in bold next to the icon. |
Show Information Icon | true | If "false", the icon will not be displayed. |
The following examples are provided for advanced users who want to inspect or edit the underlying markup for a Confluence page.
Macro name: info
Macro body: Accepts rich text.
The following example shows all parameters and a body:
<ac:structured-macro ac:name="info">
<ac:parameter ac:name="icon">false</ac:parameter>
<ac:parameter ac:name="title">This is my title</ac:parameter>
<ac:rich-text-body>
<p>
<span>This is </span> <em>important</em> <span> information.</span>
</p>
</ac:rich-text-body>
</ac:structured-macro> |
Below are some examples of the Info macro with various optional parameters used.
Description | Markup | What you will get | ||
|---|---|---|---|---|
Info macro with a body defined and no optional parameters |
|
| ||
Info macro with with a body and an optional Title parameter defined |
|
| ||
Info macro with a body and optional Title and Icon parameters defined |
|
|
{info:title=This is my title|icon=false}
This is _important_ information.
{info} |