markdownlint/test/md040-language_only.md

26 lines
418 B
Markdown
Raw Normal View History

# md040-language_only.md
Fence code block information with leading whitespace:
``` html
<h1>markdownlint</h1> {MD040:5}
```
Fence code block information with trailing whitespace:
```css
body {} {MD040:11} {MD009:11}
```
Fence code block information with extra data:
```html version=5
<title>MarkdownLint</title> {MD040:17}
```
Fence code block information without whitespaces and extra data:
```css
a {}
```