blob: 2532e504ffd2b3367df7f0d6b3ff0fc03091d58a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# Markdown tests
Paste the following tests into Mattermost to test markdown support.
```
# This should render as Heading 1 font size
## This should render as Heading 2 font size
### This should render as Heading 3 font size
#### This should render as Heading 4 font size
##### This should render as Heading 5 font size
###### This should render as Heading 6 font size
~~This should show strikethrough formatting~~
**This should be bold**
```
Here is how it should render:
# This should render as Heading 1 font size
## This should render as Heading 2 font size
### This should render as Heading 3 font size
#### This should render as Heading 4 font size
##### This should render as Heading 5 font size
###### This should render as Heading 6 font size
~~This should show strikethrough formatting~~
**This should be bold**
|