markdownlint/test/fenced_code_blocks.md

28 lines
370 B
Markdown
Raw Normal View History

This is a GFM-style fenced code block:
``` bash
#!/bin/bash
# Print something to stdout:
echo "Hello"
echo "World"
```
This is a kramdown-style fenced code block:
~~~ bash
#!/bin/bash
# Print something to stdout:
echo "Hello"
echo "World"
~~~
None of the above should trigger any heading related rules.
2015-04-16 09:13:56 -07:00
```
Code block without a language specifier
```
{MD040:23}