mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-09-22 05:40:48 +02:00
Update MD014/commands-show-output to allow blanks and output-less commands (fixes #241).
This commit is contained in:
parent
6553a13b6c
commit
9ac06456d1
4 changed files with 78 additions and 44 deletions
26
doc/Rules.md
26
doc/Rules.md
|
@ -298,8 +298,8 @@ when a single space is used after the list marker.
|
||||||
|
|
||||||
Rationale (4 space indent): Same indent as code blocks, simpler for editors to
|
Rationale (4 space indent): Same indent as code blocks, simpler for editors to
|
||||||
implement. See
|
implement. See
|
||||||
<https://www.cirosantilli.com/markdown-style-guide/#indentation-of-content-inside-lists> for more
|
<https://cirosantilli.com/markdown-style-guide#indentation-of-content-inside-lists>
|
||||||
information.
|
for more information.
|
||||||
|
|
||||||
In addition, this is a compatibility issue with multi-markdown parsers, which
|
In addition, this is a compatibility issue with multi-markdown parsers, which
|
||||||
require a 4 space indents. See
|
require a 4 space indents. See
|
||||||
|
@ -488,7 +488,7 @@ Tags: code
|
||||||
Aliases: commands-show-output
|
Aliases: commands-show-output
|
||||||
|
|
||||||
This rule is triggered when there are code blocks showing shell commands to be
|
This rule is triggered when there are code blocks showing shell commands to be
|
||||||
typed, and the shell commands are preceded by dollar signs ($):
|
typed, and *all* of the shell commands are preceded by dollar signs ($):
|
||||||
|
|
||||||
```markdown
|
```markdown
|
||||||
$ ls
|
$ ls
|
||||||
|
@ -496,7 +496,7 @@ $ cat foo
|
||||||
$ less bar
|
$ less bar
|
||||||
```
|
```
|
||||||
|
|
||||||
The dollar signs are unnecessary in the above situation, and should not be
|
The dollar signs are unnecessary in this situation, and should not be
|
||||||
included:
|
included:
|
||||||
|
|
||||||
```markdown
|
```markdown
|
||||||
|
@ -505,8 +505,7 @@ cat foo
|
||||||
less bar
|
less bar
|
||||||
```
|
```
|
||||||
|
|
||||||
However, an exception is made when there is a need to distinguish between
|
Showing output for commands preceded by dollar signs does not trigger this rule:
|
||||||
typed commands and command output, as in the following example:
|
|
||||||
|
|
||||||
```markdown
|
```markdown
|
||||||
$ ls
|
$ ls
|
||||||
|
@ -517,9 +516,18 @@ $ cat bar
|
||||||
baz
|
baz
|
||||||
```
|
```
|
||||||
|
|
||||||
Rationale: it is easier to copy and paste and less noisy if the dollar signs
|
Because some commands do not produce output, it is not a violation if *some*
|
||||||
|
commands do not have output:
|
||||||
|
|
||||||
|
```markdown
|
||||||
|
$ mkdir test
|
||||||
|
mkdir: created directory 'test'
|
||||||
|
$ ls test
|
||||||
|
```
|
||||||
|
|
||||||
|
Rationale: it is easier to copy/paste and less noisy if the dollar signs
|
||||||
are omitted when they are not needed. See
|
are omitted when they are not needed. See
|
||||||
<https://www.cirosantilli.com/markdown-style-guide/#dollar-signs-in-shell-code>
|
<https://cirosantilli.com/markdown-style-guide#dollar-signs-in-shell-code>
|
||||||
for more information.
|
for more information.
|
||||||
|
|
||||||
<a name="md018"></a>
|
<a name="md018"></a>
|
||||||
|
@ -986,7 +994,7 @@ of every item in the list consists of a single paragraph, or multiple
|
||||||
paragraphs (including sub-lists and code blocks).
|
paragraphs (including sub-lists and code blocks).
|
||||||
|
|
||||||
For example, the style guide at
|
For example, the style guide at
|
||||||
<https://www.cirosantilli.com/markdown-style-guide/#spaces-after-list-marker>
|
<https://cirosantilli.com/markdown-style-guide#spaces-after-list-marker>
|
||||||
specifies that 1 space after the list marker should be used if every item in
|
specifies that 1 space after the list marker should be used if every item in
|
||||||
the list fits within a single paragraph, but to use 2 or 3 spaces (for ordered
|
the list fits within a single paragraph, but to use 2 or 3 spaces (for ordered
|
||||||
and unordered lists respectively) if there are multiple paragraphs of content
|
and unordered lists respectively) if there are multiple paragraphs of content
|
||||||
|
|
57
lib/md014.js
57
lib/md014.js
|
@ -6,24 +6,6 @@ const { addErrorContext, filterTokens } = require("../helpers");
|
||||||
|
|
||||||
const dollarCommandRe = /^(\s*)(\$\s+)/;
|
const dollarCommandRe = /^(\s*)(\$\s+)/;
|
||||||
|
|
||||||
function addErrorIfPreviousWasCommand(onError, previous) {
|
|
||||||
if (previous) {
|
|
||||||
const { lineNumber, lineTrim, column, length } = previous;
|
|
||||||
addErrorContext(
|
|
||||||
onError,
|
|
||||||
lineNumber,
|
|
||||||
lineTrim,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
[ column, length ],
|
|
||||||
{
|
|
||||||
"editColumn": column,
|
|
||||||
"deleteCount": length
|
|
||||||
}
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
"names": [ "MD014", "commands-show-output" ],
|
"names": [ "MD014", "commands-show-output" ],
|
||||||
"description": "Dollar signs used before commands without showing output",
|
"description": "Dollar signs used before commands without showing output",
|
||||||
|
@ -31,23 +13,40 @@ module.exports = {
|
||||||
"function": function MD014(params, onError) {
|
"function": function MD014(params, onError) {
|
||||||
[ "code_block", "fence" ].forEach((type) => {
|
[ "code_block", "fence" ].forEach((type) => {
|
||||||
filterTokens(params, type, (token) => {
|
filterTokens(params, type, (token) => {
|
||||||
let previous = null;
|
|
||||||
const margin = (token.type === "fence") ? 1 : 0;
|
const margin = (token.type === "fence") ? 1 : 0;
|
||||||
|
const dollarInstances = [];
|
||||||
|
let allDollars = true;
|
||||||
for (let i = token.map[0] + margin; i < token.map[1] - margin; i++) {
|
for (let i = token.map[0] + margin; i < token.map[1] - margin; i++) {
|
||||||
const line = params.lines[i];
|
const line = params.lines[i];
|
||||||
const lineTrim = line.trim();
|
const lineTrim = line.trim();
|
||||||
const match = dollarCommandRe.exec(line);
|
if (lineTrim) {
|
||||||
if (!lineTrim || match) {
|
const match = dollarCommandRe.exec(line);
|
||||||
addErrorIfPreviousWasCommand(onError, previous);
|
if (match) {
|
||||||
|
const column = match[1].length + 1;
|
||||||
|
const length = match[2].length;
|
||||||
|
dollarInstances.push([ i, lineTrim, column, length ]);
|
||||||
|
} else {
|
||||||
|
allDollars = false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
previous = match ? {
|
|
||||||
"lineNumber": i + 1,
|
|
||||||
"lineTrim": lineTrim,
|
|
||||||
"column": match[1].length + 1,
|
|
||||||
"length": match[2].length
|
|
||||||
} : null;
|
|
||||||
}
|
}
|
||||||
addErrorIfPreviousWasCommand(onError, previous);
|
if (allDollars) {
|
||||||
|
dollarInstances.forEach((instance) => {
|
||||||
|
const [ i, lineTrim, column, length ] = instance;
|
||||||
|
addErrorContext(
|
||||||
|
onError,
|
||||||
|
i + 1,
|
||||||
|
lineTrim,
|
||||||
|
null,
|
||||||
|
null,
|
||||||
|
[ column, length ],
|
||||||
|
{
|
||||||
|
"editColumn": column,
|
||||||
|
"deleteCount": length
|
||||||
|
}
|
||||||
|
);
|
||||||
|
});
|
||||||
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
# Code Block Dollar
|
||||||
|
|
||||||
The following code block shouldn't have $ before the commands:
|
The following code block shouldn't have $ before the commands:
|
||||||
|
|
||||||
$ ls {MD014}
|
$ ls {MD014}
|
||||||
|
@ -27,7 +29,7 @@ The following code block doesn't have any dollar signs, and shouldn't fire:
|
||||||
cat bar
|
cat bar
|
||||||
|
|
||||||
The following (fenced) code block doesn't have any content at all, and
|
The following (fenced) code block doesn't have any content at all, and
|
||||||
shouldn't fire: {MD046:32}
|
shouldn't fire: {MD046:34}
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
```
|
```
|
||||||
|
@ -36,14 +38,39 @@ Mixed content:
|
||||||
|
|
||||||
$ ls
|
$ ls
|
||||||
file.md other.md
|
file.md other.md
|
||||||
$ git branch {MD014}
|
$ git branch
|
||||||
$ cat stuff {MD014}
|
$ cat stuff
|
||||||
|
|
||||||
output
|
output
|
||||||
$ ls {MD014}
|
|
||||||
$ git branch {MD014}
|
More mixed content:
|
||||||
|
|
||||||
|
$ ls
|
||||||
|
$ git branch
|
||||||
$ cat stuff
|
$ cat stuff
|
||||||
stuff here
|
stuff here
|
||||||
more stuff
|
more stuff
|
||||||
$ tail cat
|
$ tail cat
|
||||||
meow
|
meow
|
||||||
|
|
||||||
|
Command with blank lines in output:
|
||||||
|
|
||||||
|
$ dig example.com
|
||||||
|
|
||||||
|
; ...
|
||||||
|
;; ...
|
||||||
|
|
||||||
|
;; ...
|
||||||
|
|
||||||
|
Some commands with no output:
|
||||||
|
|
||||||
|
$ mkdir test
|
||||||
|
mkdir: created directory 'test'
|
||||||
|
$ cd test
|
||||||
|
$ ls test
|
||||||
|
|
||||||
|
All commands with no output:
|
||||||
|
|
||||||
|
$ mkdir test {MD014}
|
||||||
|
$ cd test {MD014}
|
||||||
|
$ ls test {MD014}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# heading
|
# Code Block Dollar Fence
|
||||||
|
|
||||||
```fence
|
```fence
|
||||||
$ code {MD014}
|
$ code {MD014}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue