# Heading level 1
## Heading level 2
....
I really like using Markdown.
I just love **bold text**.
Italicized text is the *cat's meow*.
This text is ***really important***.
> Dorothy followed her through
> Dorothy followed her through many of the beautiful rooms in her castle.
>
>> The Witch bade her clean the pots and kettles and sweep
> #### The quarterly results look great!
>
> - Revenue was off the chart.
> - Profits were higher than ever.
>
> *Everything* is going according to **plan**.
HTML:
<blockquote> .... </blockquote>
Indented four spaces or one tab.
HTML:
<code> .... </code>

My favorite search engine is [Duck Duck Go](https://duckduckgo.com).
My favorite search engine is [Duck Duck Go](https://duckduckgo.com "The best search engine for privacy").
----------------------
| Format | Tag example |
| -------- | ----------- |
| Headings | =heading1=<br>==heading2==<br>===heading3=== |
| New paragraph | A blank line starts a new paragraph |
| Source code block | // all on one line<br> {{{ if (foo) bar else baz }}} |
Reference: https://www.markdownguide.org/basic-syntax/