5.23. note Filter


Interface

The general syntax is:

  !block note[; parameters]
  ...
  !endblock

The parameters are:

Name Type Rule
label string  

See Understanding Filter Interfaces, if necessary.


Description

The note filter is used to specify a note. The label parameter can be used to specify a label. The default label is "Note:".


Examples

!block note; label='Example:'
And some text inside

a multi-line note
!endblock

The result is:


Example:And some text inside

a multi-line note


If you want the label to have a line to itself, leave the first line blank like this:

!block note

And some more text inside

another multi-line note
!endblock

The result is:


Note:

And some more text inside

another multi-line note