!! Introduction

The DefaultMarkup is a markup template allowing to create new markups at low implementation workload. Further, the use of this template asserts a consistent structure of all markups leading to a unified look and feel of the system, considering syntax, rendering, and editing support. 

!! Syntactical Structure

A DefaultMarkup section always is introduced by two percent-signs (~%%)followed by the specific keyword of the markup.

! Multi-line markup

A DefaultMarkup section as multiple lines is terminated by another percent-sign (~%). 
{{{
%%<keyword> 
<content>
%
}}}

! Single line markup
DefaultMarkup blocks can also be defined in a single line. Then no trailing sign is required and the block is terminated by the line-break.
{{{
%%<keyword> <content>
}}}



!! Annotations