feat: update for doks v1.0.0-alpha.1

This commit is contained in:
Henk Verlinde
2023-04-18 15:10:33 +02:00
parent d00e52dd55
commit 3d4c2dbdff
253 changed files with 5883 additions and 18084 deletions

View File

@ -0,0 +1,109 @@
---
title: "Markdown Basic Syntax"
description: "This Markdown cheat sheet provides a quick overview of all basic Markdown syntax elements."
summary: "This Markdown cheat sheet provides a quick overview of all basic Markdown syntax elements."
date: 2023-03-31T12:06:49+02:00
lastmod: 2023-03-31T12:06:49+02:00
draft: false
weight: 50
images: ["markdown-guide.jpg"]
categories: []
tags: []
contributors: ["Henk Verlinde"]
pinned: false
homepage: false
---
If you need more information about any of these elements, refer to the reference guide for [basic syntax](https://www.markdownguide.org/basic-syntax).
## Heading
```md
# H1
## H2
### H3
```
# 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