Basic Macros
This plugin includes basic macros for linking and formatting content.
This plugin includes the following macros:
- anchor - Create an anchor that allows people to link to a specific point in a page.
- quote - Generate blockquotes that may contain multiple paragraphs or complex markup.
- noformat - Create blocks of text where other wiki formatting is not applied.
- panel - Draws a panel with an optional title and border.
- color - Change the colour of the contained text.
- loremipsum - Insert paragraphs of "lorem ipsum" space-filler text.
- nolink and - Suppress rendering of a CamelCase link.
Generate blockquotes that may contain multiple paragraphs or complex markup.
The Code :
{quote}
Some quoted content}
{quote}
What you will get :
Some 'unqouted' content
Some quoted content
Some more 'unqouted' content.
The Noformat Macro displays a block of text in monospace font with no other formatting.
The Code :
{noformat}
Some non-formatted text.
{noformat}
What you will get :
Some formatted text.
Some non-formatted text.
Some more formatted text.
Parameters
Name |
Required? |
Default |
Description |
|---|---|---|---|
nopanel |
|
false |
Removes the bordering panel. |
Draws a panel with an optional title and border.
The code:
Default Panel:
{panel}
Some content.
{panel}
Panel with a dashed, colored border:
{panel:borderStyle=dashed|borderColor=red}
Some content.
{panel}
Panel with a title and solid, colored border:
{panel:title=My Panel|borderStyle=solid|borderColor=blue}
Some content.
{panel}
Panel with a colored background and title:
{panel:bgColor=#FFCCFF|title=My Title|titleBGColor=yellow }
Some content.
{panel}
What you will get:
Default Panel:
Some content.
Panel with a dashed, colored border:
Some content.
Panel with a title and solid, colored border:
Some content.
Panel with a colored background and title:
Some content.
Parameters
Name |
Required? |
Default |
Description |
|---|---|---|---|
title |
|
none |
The title of the panel. If specified, this title will be displayed in its own title-row. |
boderStyle |
|
none |
The style of the panel's border. Valid values are 'solid', 'dashed' and other valid CSS border styles. |
borderColor |
(x)Grey |
The colour of the panel's border. |
|
borderWidth |
|
|
The width of the panel's border (in pixels). |
bgColor |
|
Grey |
The background colour of the panel. |
titleBGColor |
|
The background colour of the title-row of the panel. |