mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-12-16 14:00:13 +01:00
35 lines
563 B
Markdown
35 lines
563 B
Markdown
# 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 {}
|
|
```
|
|
|
|
<!-- markdownlint-configure-file {
|
|
"MD040": {
|
|
"allowed_languages": [
|
|
"html",
|
|
"css"
|
|
],
|
|
"language_only": true
|
|
}
|
|
} -->
|