Sample post - Basic Markdown syntax

2021-04-21 One-minute read

Overview

This sample post teaches you some basic Markdown syntax. Use this syntax in your R Markdown documents.

Markdown basics

# Big header (H1)
## Smaller header (H2)
### Smaller header (H3)
#### Smaller header (H4)
##### Smaller header (H5)

---

Normal text

**Bold** text

*Italicized* text

---

[Link](http://google.com)

![Render image](https://octodex.github.com/images/yaktocat.png)

---

Numbered lists:

1. One
2. Two
3. Three

Bullet points:

* One
  * sub-bullet
* Two

> Blockquote

Big header (H1)

Smaller header (H2)

Smaller header (H3)

Smaller header (H4)

Smaller header (H5)

Normal text

Bold text

Italicized text


URL Link

Render image


Numbered lists:

  1. One
  2. Two
  3. Three

Bullet points:

  • One
    • sub-bullet
  • Two

Blockquote