Markdown Basics - List, Links and Images
This guide will walk you through how to use lists, links and images in Markdown

Markdown makes it easy to add lists, links and images to your documents using simple syntax.
Lists
1. Unordered Lists
Use ‘-’ or ‘*’ to create unordered lists:
- Item 1
- Item 2
- Subitem 2.1
- Item 1
- Item 2
- Subitem 2.1
2. Ordered Lists
Use numbers followed by a period to create an ordered list:
1. Item 1
2. Item 2
1. Subitem 2.1
- Item 1
- Item 2
- Subitem 2.1
3. Nesting
You can nest ordered and unordered lists together:
1. Ordered item
- Subitem 1
- Ordered item
- Subitem 1
Links
Use square brackets [ ] for the link text and parentheses ( ) for the URL:
1. Simple link
[Link Text](https://example.com)
2. Mail link
[Send me an email](mailto:example@example.com)
Images
1. Basic Images
Similar to links, but with an exclamation mark ! at the beginning:


2. Images with Titles
Add a title in quotes for extra context:


Code Blocks
1. Inline Code
Wrap code in backticks:
`inline code`
2. Code Blocks
Use triple backticks for multi-line code:
function example() {
console.log("Hello, Markdown!");
}