Markdown is a lightweight markup language designed to simplify text formatting. Due to straightforward syntax, the content written in Markdown is easy to read and understand. You can also readily convert it to advanced markup language formats such as Rich Text.
Syntax
With Markdown, you can format the content of string-type fields in ELMA365. The language’s syntax is described in the specification that can be found here https://www.markdownguide.org. For testing, use online Markdown editor https://dillinger.io.
See below for a description and examples of the Markdown syntax. Please note, you can not format fields with the HTML markup.
Strings
Original Text |
Formatted Text |
**Bold** |
Bold |
# h1 |
Header 1 |
## h2 |
Header 2 |
Links
Absolute URLs in string format are automatically converted to links, for example, https://elma365.com.
You can also use the following syntax to format links :
[Main page](https://elma365.com)
Images
![logo] (https://elma365.com/en/help/favicon.png)
>Quote
Lists
- item 1
- item 2
- item 3
Source Code
You can insert both a single line:
`code`
code
Or a block of code:
```
more than one
line of code
```
more than one
line of code
Tables
| Column1| Column2 | Column3|
|---------|----------|------------|
|Value1|Value2|Value2|
Column1 |
Column2 |
Column3 |
Value1 |
Value2 |
Value3 |
Found a typo? Highlight the text, press ctrl + enter and notify us