Added nested list items, moved image embedding with reference to own block (#1939)

This commit is contained in:
TheDarkTron 2023-01-18 12:44:08 +01:00 committed by GitHub
parent 9cc370f984
commit 9b0e8f2203
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -60,11 +60,13 @@ ___bold italic___
```markdown
* Item 1
* Nested Item 1
* Item 2
```
```markdown
- Item 1
- Nested Item 1
- Item 2
```
@ -98,10 +100,10 @@ ___bold italic___
```markdown
![Image alt text](/path/to/img.jpg)
![Image alt text](/path/to/img.jpg "title")
![Image alt text][img]
```
```markdown
![Image alt text][img]
[img]: http://foo.com/img.jpg
```