Basic Markdown Language Syntax

Josiah Fordahl
1 min readFeb 14, 2021

Markdown is lightweight markup language that is used in plaintext documents to add forming elements.

Writing in markdown is slightly different than using a WYSIWYG editor. Markdown doesn’t immediately show the changes to the document as you press buttons like “Bold”, instead with markdown you annotate the formatting you wish to show in line. This means if I wanted to create a heading I would do the following:

# This is now a H1 heading## This is now a H2 heading 

I recommend practicing with this free online program: https://dillinger.io/

By using the below syntax rules, you can markup your plaintext documents.

Heading:

# H1
## H2
### H3

Bold:

**bold text**

Italic:

*italicized text*

Blockquote:

> blockquote

Ordered List:

1. First item
2. Second item
3. Third item

Unordered List:

- First item
- Second item
- Third item

Code:

`code`

Horizontal Rule:

---

Link:

[title](https://www.example.com)

Image:

![alt text](image.jpg)

--

--