A
Aura Dev

Markdown Cheatsheet

Markdown formatting syntax.

Headers & Text

Headers

# H1
## H2
### H3
#### H4
##### H5
###### H6

Emphasis

*Italic* or _Italic_
**Bold** or __Bold__
***Bold Italic***
~~Strikethrough~~

Lists & Blockquotes

Lists

1. First item
2. Second item
   * Unordered sub-list
   * Another item

- Unordered item
- Another item

Blockquotes

> This is a quote.
> It can span multiple lines.
>> And can be nested.

Links & Images

Links

[Link text](https://example.com)
[Link with title](https://example.com "Title")

Images

![Alt text](image.jpg)
![Alt text](image.jpg "Title")

Code & Tables

Code

Inline `code` snippet.

```javascript
// Code block
const x = 10;
```

Tables

| Header 1 | Header 2 |
| -------- | -------- |
| Cell 1   | Cell 2   |
| Cell 3   | Cell 4   |

What is Markdown?

Markdown is a lightweight markup language used to format plain text documents easily.

This cheatsheet provides a quick reference for Markdown syntax, including headers, lists, links, images, and code blocks.

Sponsored LinkAdvertisement Space (728x90)