Markdown Guide
Markdown is a lightweight markup language for creating formatted text. Currently, Encharge supports markdown in our native forms - specifically in the field labels and the text section.
This page contains some of the most common markdown elements as a quick reference. If you want to learn more about markdown and use other elements, you can check the official reference cheat sheet for extended syntax.
Markdown reference sheet
Element | Markdown Syntax | Example |
---|---|---|
Heading | # H1 ## H2 ### H3 |
Heading |
Bold | **bold text** |
Bold |
Italic | *italicized text* |
Italic |
Blockquote | > blockquote |
Blockquote |
Ordered List | 1. First item 2. Second item 3. Third item |
|
Unordered List | - First item - Second item - Third item |
|
Code | `code` |
code |
Horizontal Rule | --- |
n/a |
Link | [Link title](https://www.example.com) |
Link title |
Image | ![alt text](image.jpg) |
|