Created
August 16, 2024 08:50
-
-
Save evalstate/6b5ca3f67634602f7ce8dd8c3dbab7a3 to your computer and use it in GitHub Desktop.
Markdown Code Blocks and Lists Demo
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## 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