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.

Using the Info Macro

To add the Info macro to a page:

Parameters

Parameter

Default

Description

Optional Title
(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
(icon

true

If "false", the icon will not be displayed.

Code examples

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.

Storage format example

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

MarkupWhat you will get

Info macro with a body defined and no optional parameters

<ac:structured-macro ac:name="info">
  <ac:rich-text-body>
    <p>This is <em>important</em> information.</p>
  </ac:rich-text-body>
</ac:structured-macro>

 This is important information.

Info macro with with a body and an optional Title parameter defined

<ac:structured-macro ac:name="info">
  <ac:parameter ac:name="title">This is my title</ac:parameter>
  <ac:rich-text-body>
    <p>This is <em>important</em> information.</p>
  </ac:rich-text-body>
</ac:structured-macro>

 This is important information.

Info macro with a body and optional Title and Icon parameters defined

<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>

 This is important information.

Wiki markup example

{info:title=This is my title|icon=false}
This is _important_ information.
{info}