mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2026-02-05 05:21:47 +01:00
This commit is contained in:
parent
5be7104dab
commit
6c57203ae5
4 changed files with 72 additions and 21 deletions
6
test/fenced-code-in-list.json
Normal file
6
test/fenced-code-in-list.json
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"default": true,
|
||||
"MD013": {
|
||||
"code_blocks": false
|
||||
}
|
||||
}
|
||||
35
test/fenced-code-in-list.md
Normal file
35
test/fenced-code-in-list.md
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
# Heading
|
||||
|
||||
- Item
|
||||
|
||||
```javascript
|
||||
debugger;
|
||||
|
||||
|
||||
debugger;
|
||||
```
|
||||
|
||||
text
|
||||
|
||||
- Item
|
||||
|
||||
- Subitem
|
||||
|
||||
```javascript
|
||||
debugger;
|
||||
|
||||
|
||||
debugger;
|
||||
```
|
||||
|
||||
text
|
||||
|
||||
- Subitem
|
||||
|
||||
- Item
|
||||
|
||||
- Subitem
|
||||
|
||||
```javascript
|
||||
debugger; debugger; debugger; debugger; debugger; debugger; debugger; debugger; debugger; debugger;
|
||||
```
|
||||
13
test/fenced-code-unmatched.md
Normal file
13
test/fenced-code-unmatched.md
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
# Heading
|
||||
|
||||
Text
|
||||
|
||||
```code```
|
||||
|
||||
Text
|
||||
|
||||
```javascript
|
||||
var x = 5;
|
||||
```
|
||||
|
||||
Text
|
||||
Loading…
Add table
Add a link
Reference in a new issue