ux: update dark mode+

This commit is contained in:
Henk Verlinde
2023-05-23 14:55:30 +02:00
parent e93a3075bc
commit 834afc3eec
37 changed files with 1630 additions and 2027 deletions

View 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
![alt text](markdown-guide.jpg)
```
![alt text](markdown-guide.jpg)

Binary file not shown.

After

Width:  |  Height:  |  Size: 79 KiB