You can format form field labels by using Markdown in the label input field.
The label of the form element will be formatted accordingly.
The following formatting options can be used for form element labels:
To display text in bold, place the desired text between double asterisks or underscores:
For italic text, use single asterisks or underscores:
As described in the article Adding links to forms, you can insert links to additional content:
To underline text, place double plus signs before and after the desired text:
To display text with a strikethrough, place double tilde characters before and after the desired text:
But what do you do when you want to use special characters in a label that are normally used for Markdown formatting? If you use them multiple times in a lable, they will be interpreted as formatting instructions. The characters will then not be displayed as normal text characters as desired, but will automatically trigger formatting.
Markdown recognizes certain character combinations as formatting commands – for example *Text*
for italics or **Text**
for bold. These formatting rules are applied whenever characters appear in corresponding patterns.
If you want to display such characters as normal text, place a backslash (\) directly before each formatting character:
The characters will then appear exactly as you wrote them – without unwanted formatting.
Formatting |
Markdown Syntax |
Result |
Bold | **Text** oder __Text__ |
Text |
Italic | *Texte* oder _Text_ |
Text |
Link | [Linktext](URL) |
Linktext |
Underlined | ++Test++ |
Text |
Strikethrough | ~~Text~~ |
|
Special characters | \* |
* |