Markdown language tutorial
This page briefly explains the Markdown language. It will cover topics such as making titles, writing plain text, adding code, creating tables, and more.
Markdown Basics
Horizontal Lines
Use three dashes to create a horizontal line, like the one below.
---
Line Breaks
To create a new line in plain text, add more than two whitespaces at the end of the line.
I put two whitespaces here
then this is the new line.
Headers
Use # symbols to create headers of different levels.
Header 1
# Header 1
Header 2
## Header 2
Header 3
### Header 3
Bold and Italic Text
Bold: Use double asterisks ** or double underscores __ for bold text.
**bold** my bold text
Italic: Use single asterisk * or single underscore _ for italic text.
*italic* my italic text
Paragraphs
To create paragraphs, use one or more blank lines to separate blocks of text.
Paragraph 1,
hello world, …
Paragraph 2,
Markdown tutorial …
Pictures
To add a picture,

