Skip to content

Instantly share code, notes, and snippets.

@evalstate
Created August 16, 2024 08:50
Show Gist options
  • Save evalstate/6b5ca3f67634602f7ce8dd8c3dbab7a3 to your computer and use it in GitHub Desktop.
Save evalstate/6b5ca3f67634602f7ce8dd8c3dbab7a3 to your computer and use it in GitHub Desktop.
Markdown Code Blocks and Lists Demo
## Inside a List
- This is a test (normal fences)
```html
<foo />
```
- This is another test (indented block)
<foo />
<bar />
- This is a further test (indents and fences)
```
<foo />
<bar />
```
- Test complete
## Outside a List
This is a test (normal fences)
```html
<foo />
```
This is another test (indented block)
<foo />
<bar />
This is another test (indents and fences)
```
<foo />
<bar />
```
Test complete
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment