Information

  • In PLANTA pulse, texts can be formatted in various places:
  • The user has two options to do so:
    • A WYSIWYG (what you see is what you get) editor or
    • A Markdown editor
  • Users can define in their User Settings → General which editor is to be used by default.
  • In the lower right of text fields, users can switch between Markdown and WYSIWYG.

WYSIWYG

Details

  • In the WYSIWYG (What you see is what you get) editor, the various formatting options can be selected in the symbol bar at the top and applied to the required text passages.

Markdown

Details

  • The following table shows some of the most important formatting options of the Markdown editor in PLANTA pulse:
TypeFormatting Result
Headings# Heading 1
## Heading 2
### Heading 3
Italics*italic* or _italic_
Bold**bold** or __bold__
Underline<u>Underline</u>
Strike through

<del>Strike through</del> or ~~Strike through~~

Quote> This is a quote.
> It continues here.
Mention users@georg.hart
List* One
 * Two
or
- One
 - Two
(Add a space to indicate a subitem.)
or
1. One
2. Two

Horizontal rule--- or ___ (at least 3)
Table

Heading 2 | Heading 3

Cell 1 | Cell 2

Code`Code` or

```
Longer code
```


Link with display text[Click here](www.planta.de)