mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-09-22 05:40:48 +02:00
27 lines
381 B
Markdown
27 lines
381 B
Markdown
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.
|
|
|
|
```
|
|
Code block without a language specifier
|
|
```
|
|
|
|
{MD040:23} {MD048:13}
|