Markdown Basic

2024-10-24

Headings

# Heading 11
## Heading 211
### Heading 31
#### Heading 41
##### Heading 5
###### Heading 6

Heading 1

Heading 2

Heading 3

Heading 4

Heading 5
Heading 6

Bold

**This text is bold** 

This text is also bold

Italic

*This text is italic*

This text is also italic

Bold and Italic

***This text is bold and italic***

This text is bold and italic

Lists

Unordered List

- Item 1 
- Item 2 
	- Subitem 1 
	- Subitem 2
  • Item 1
  • Item 2
    • Subitem 1
    • Subitem 2

Ordered List

1. First item
2. Second item
3. Third item
  1. First item
  2. Second item
  3. Third item
[Link text](http://url.com)

Link text

Images

![Alt text](https://picsum.photos/300/200)

Alt textAlt text

Blockquotes

> This is a blockquote.

This is a blockquote.

Code

`Inline code`

Inline code

```
This is a code block with backtick
```
This is a code block with backtick


~~~
This is a code block with tilde
~~~
This is a code block with tilde

Horizontal Line

---

Tables

| Header 1 | Header 2 |
|----------|----------|
| Row 1    | Row 1    |
| Row 2    | Row 2    |
Header 1Header 2
Row 1Row 1
Row 2Row 2