ux: update dark mode+
This commit is contained in:
110
content/docs/cheat-sheets/markdown-basic-syntax/index.md
Normal file
110
content/docs/cheat-sheets/markdown-basic-syntax/index.md
Normal file
@ -0,0 +1,110 @@
|
||||
---
|
||||
title: "Markdown Basic Syntax"
|
||||
description: "A quick reference to the Markdown basic syntax."
|
||||
summary: "A quick reference to the Markdown basic syntax."
|
||||
date: 2023-05-12T16:35:44+02:00
|
||||
lastmod: 2023-05-12T16:35:44+02:00
|
||||
draft: false
|
||||
images: []
|
||||
menu:
|
||||
docs:
|
||||
parent: ""
|
||||
identifier: "markdown-basic-syntax-08aeef306d3f46c4e40c17b559b715c1"
|
||||
weight: 210
|
||||
toc: true
|
||||
---
|
||||
|
||||
A quick reference to the Markdown basic syntax.
|
||||
{ .lead }
|
||||
|
||||
{{< callout icon="info-circle" >}}
|
||||
Refer to the [basic syntax](https://www.markdownguide.org/basic-syntax) reference guide for more information.
|
||||
{{< /callout >}}
|
||||
|
||||
## Heading
|
||||
|
||||
```md
|
||||
# H1
|
||||
## H2
|
||||
### H3
|
||||
```
|
||||
|
||||
## Bold
|
||||
|
||||
```md
|
||||
**bold text**
|
||||
```
|
||||
|
||||
**bold text**
|
||||
|
||||
## Italic
|
||||
|
||||
```md
|
||||
*italicized text*
|
||||
```
|
||||
|
||||
*italicized text*
|
||||
|
||||
## Blockquote
|
||||
|
||||
```md
|
||||
> blockquote
|
||||
```
|
||||
|
||||
> blockquote
|
||||
|
||||
## Ordered List
|
||||
|
||||
```md
|
||||
1. First item
|
||||
2. Second item
|
||||
3. Third item
|
||||
```
|
||||
|
||||
1. First item
|
||||
2. Second item
|
||||
3. Third item
|
||||
|
||||
## Unordered List
|
||||
|
||||
```md
|
||||
- First item
|
||||
- Second item
|
||||
- Third item
|
||||
```
|
||||
|
||||
- First item
|
||||
- Second item
|
||||
- Third item
|
||||
|
||||
## Code
|
||||
|
||||
```bash
|
||||
`code`
|
||||
```
|
||||
|
||||
`code`
|
||||
|
||||
## Horizontal Rule
|
||||
|
||||
```md
|
||||
---
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## Link
|
||||
|
||||
```md
|
||||
[Markdown Guide](https://www.markdownguide.org)
|
||||
```
|
||||
|
||||
[Markdown Guide](https://www.markdownguide.org)
|
||||
|
||||
## Image
|
||||
|
||||
```md
|
||||

|
||||
```
|
||||
|
||||

|
Binary file not shown.
After Width: | Height: | Size: 79 KiB |
Reference in New Issue
Block a user