Here are the basics of the Markdown syntax
Headers are identified with one or multiple #
. The number of #
corresponds to the level.
## Level 2 header
### Level 3 header
A paragraph is simply one or more consecutive lines of text, separated by one or more blank lines. (A blank line is any line that looks like a blank line — a line containing nothing but spaces or tabs is considered blank.)
Normal paragraphs should not be indented with spaces or tabs.
Just use 3 -
---
Markdown uses asterisks to indicate spans of emphasis.
*Single asterisk for italic*
Single asterisk for italic
**Double asterisks for bold**
Double asterisks for bold
Unordered (bulleted) lists use asterisks as list markers.
* Candy.
* Gum.
* Booze.
Ordered (numbered) lists use regular numbers, followed by periods, as list markers:
1. Red
2. Green
3. Blue
In a regular paragraph, you can create code span by wrapping text in backtick quotes.
For instance
Use this shortcode `{{% toc %}}` to add a toc to your page.
Use this shortcode {{% toc %}}
to add a toc to your page.
To specify an entire block of code, indent every line of the block by 4 spaces or 1 tab.
For instance
{{% info %}}
Your info message
{{% /info %}}
You may want to comment out a section to use later.
For instance
Use the codes <!--
and -->
on either side of the section you want to hide.
<!-- This section may be out of date. Confirm that we can delete it. -->