46 lines
1.0 KiB
Markdown
46 lines
1.0 KiB
Markdown
|
|
Reference [here](https://www.markdownguide.org/basic-syntax/)
|
|
|
|
Headings, h# tags
|
|
|
|
|
|
# Header Level 1 -> <h1> Content </h1>
|
|
## Header Level 2 -> <h2> Content </h2>
|
|
### Header Level 3 -> <h3> Content </h3>
|
|
#### Header Level 4 -> <h4> Content </h4>
|
|
##### Header Level 5 -> <h5> Content </h5>
|
|
###### Header Level 6 -> <h6> Content </h6>
|
|
|
|
|
|
Alternate syntax (n number of =/-)
|
|
|
|
Header Level 1 -> <h1> Content </h1>
|
|
================
|
|
|
|
|
|
Header Level 2 -> <h2> Content </h2>
|
|
----------------
|
|
|
|
|
|
Paragraph tags
|
|
|
|
Hello world -> <p> Hello world </p>
|
|
|
|
This is also
|
|
a paragraph -> <p> this is also a paragraph regardless </p>
|
|
regardless
|
|
|
|
However
|
|
this is a break, because it ends with two spaces -> <p> However <br> this is a break, because it ends with two spaces </p>
|
|
|
|
Double returns also
|
|
|
|
yields new paragraphs -> <p> Double returns also</p> <p> yields new paragraphs </p>
|
|
|
|
|
|
*italic* -> <em>italic</em>
|
|
**bold** -> <strong>bold</strong>
|
|
***italic bold*** -> <strong><em>italic bold</em></strong>
|
|
|
|
hello **world** -> [TextClass: hello, BoldClass: world]
|