markdownlint/test/fenced_code_blocks.md
2019-10-24 20:26:27 -07:00

381 B

This is a GFM-style fenced code block:

#!/bin/bash

# Print something to stdout:
echo "Hello"
echo "World"

This is a kramdown-style fenced code block:

#!/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}