eslint@4.1.1, eslint-plugin-markdown@1.0.0-beta.7
Test doc 1:
* List entry
<!-- eslint-disable strict -->
```js
console.log('a');
```
* List entry
<!-- eslint-skip -->
```js
> console.log('a');
```
No errors.
Test doc 2:
* List entry
<!-- eslint-disable strict -->
```js
console.log('a');
```
* List entry
<!-- eslint-skip -->
```js
> console.log('a');
```
Comments are ignored:
4:1 error Use the global form of 'use strict' strict
10:1 error Parsing error: Unexpected token >
No other block or span Markdown elements have this issue. All list elements (unordered with * + - or ordered with 1. ...) have the same issue (both one- and multiline).
eslint@4.1.1,eslint-plugin-markdown@1.0.0-beta.7Test doc 1:
* List entry <!-- eslint-disable strict --> ```js console.log('a'); ``` * List entry <!-- eslint-skip --> ```js > console.log('a'); ```No errors.
Test doc 2:
* List entry <!-- eslint-disable strict --> ```js console.log('a'); ``` * List entry <!-- eslint-skip --> ```js > console.log('a'); ```Comments are ignored:
No other block or span Markdown elements have this issue. All list elements (unordered with
* + -or ordered with1. ...) have the same issue (both one- and multiline).