+
+ This is not allowed {MD033}
+
+ This is not allowed {MD033}
+
+| Allowed | Not Allowed |
+| ------------------- | ------------------ |
+| | |
+| | |
+|
| |
+| |
{MD033}
|
+
+
+ {MD033}
+
+
+
diff --git a/test/link-fragments-ignored-pattern-default.md b/test/link-fragments-ignored-pattern-default.md
new file mode 100644
index 00000000..e7cd0fae
--- /dev/null
+++ b/test/link-fragments-ignored-pattern-default.md
@@ -0,0 +1,9 @@
+# Link Fragments Ignored Pattern Default
+
+## Heading
+
+[Present](#heading)
+
+[Ignored](#ignored) {MD051}
+
+[Missing](#missing) {MD051}
diff --git a/test/link-fragments-ignored-pattern-empty.md b/test/link-fragments-ignored-pattern-empty.md
new file mode 100644
index 00000000..93d668cd
--- /dev/null
+++ b/test/link-fragments-ignored-pattern-empty.md
@@ -0,0 +1,15 @@
+# Link Fragments Ignored Pattern Empty
+
+## Heading
+
+[Present](#heading)
+
+[Ignored](#ignored) {MD051}
+
+[Missing](#missing) {MD051}
+
+
diff --git a/test/link-fragments-ignored-pattern-multiple.md b/test/link-fragments-ignored-pattern-multiple.md
new file mode 100644
index 00000000..169914b5
--- /dev/null
+++ b/test/link-fragments-ignored-pattern-multiple.md
@@ -0,0 +1,15 @@
+# Link Fragments Ignored Pattern Multiple
+
+## Heading
+
+[Present](#heading)
+
+[Ignored](#ignored)
+
+[Missing](#missing)
+
+
diff --git a/test/link-fragments-ignored-pattern-present.md b/test/link-fragments-ignored-pattern-present.md
new file mode 100644
index 00000000..5449c759
--- /dev/null
+++ b/test/link-fragments-ignored-pattern-present.md
@@ -0,0 +1,15 @@
+# Link Fragments Ignored Pattern Present
+
+## Heading
+
+[Present](#heading)
+
+[Ignored](#ignored)
+
+[Missing](#missing) {MD051}
+
+
diff --git a/test/lists-inside-footnote.md b/test/lists-inside-footnote.md
new file mode 100644
index 00000000..1f94e02b
--- /dev/null
+++ b/test/lists-inside-footnote.md
@@ -0,0 +1,22 @@
+# Lists Inside Footnote
+
+Text.[^ref]
+
+[^ref]: Note and list:
+
+ * Item
+ * Item
+ * Item
+
+ 1. Item
+ 1. Item
+ 1. Item
+
+ Text
+
+ * Item
+ * Item {MD005} {MD007}
+ * Item
+ * Item
+ * Item {MD005} {MD007}
+ * Item
diff --git a/test/markdownlint-test-custom-rules.mjs b/test/markdownlint-test-custom-rules.mjs
index 1a78c117..0cb331d6 100644
--- a/test/markdownlint-test-custom-rules.mjs
+++ b/test/markdownlint-test-custom-rules.mjs
@@ -24,6 +24,7 @@ test("customRulesV0", (t) => new Promise((resolve) => {
"customRules": customRules.all,
"files": [ customRulesMd ],
markdownItFactory,
+ // @ts-ignore
"resultVersion": 0
};
lintAsync(options, function callback(err, actualResult) {
@@ -97,6 +98,7 @@ test("customRulesV1", (t) => new Promise((resolve) => {
"customRules": customRules.all,
"files": [ customRulesMd ],
markdownItFactory,
+ // @ts-ignore
"resultVersion": 1
};
lintAsync(options, function callback(err, actualResult) {
@@ -229,6 +231,7 @@ test("customRulesV2", (t) => new Promise((resolve) => {
"customRules": customRules.all,
"files": [ customRulesMd ],
markdownItFactory,
+ // @ts-ignore
"resultVersion": 2
};
lintAsync(options, function callback(err, actualResult) {
@@ -358,6 +361,7 @@ test("customRulesConfig", (t) => new Promise((resolve) => {
"letters-e-x": false
},
markdownItFactory,
+ // @ts-ignore
"resultVersion": 0
};
lintAsync(options, function callback(err, actualResult) {
@@ -387,6 +391,7 @@ test("customRulesNpmPackage", (t) => new Promise((resolve) => {
"strings": {
"string": "# Text\n\n---\n\nText ✅\n"
},
+ // @ts-ignore
"resultVersion": 0
};
lintAsync(options, function callback(err, actualResult) {
diff --git a/test/markdownlint-test-helpers.mjs b/test/markdownlint-test-helpers.mjs
index 64ff908f..5b72dabd 100644
--- a/test/markdownlint-test-helpers.mjs
+++ b/test/markdownlint-test-helpers.mjs
@@ -5,7 +5,7 @@ import path from "node:path";
import test from "ava";
import { characterEntities } from "character-entities";
import { gemoji } from "gemoji";
-import helpers from "../helpers/helpers.cjs";
+import helpers, { formatLintResults } from "../helpers/helpers.cjs";
import { lint } from "markdownlint/promise";
import { forEachInlineCodeSpan } from "../lib/markdownit.cjs";
import { getReferenceLinkImageData } from "../lib/cache.mjs";
@@ -529,3 +529,18 @@ test("hasOverlap", (t) => {
t.false(helpers.hasOverlap(rangeB, rangeA), JSON.stringify({ rangeB, rangeA }));
}
});
+
+test("formatLintResults", async(t) => {
+ t.plan(2);
+ t.deepEqual(formatLintResults(undefined), []);
+ const lintResults = await lint({ "strings": { "content": "# Heading\n " } });
+ t.deepEqual(
+ formatLintResults(lintResults),
+ [
+ "content:1:3 MD019/no-multiple-space-atx Multiple spaces after hash on atx style heading [Context: \"# Heading\"]",
+ "content:1 MD022/blanks-around-headings Headings should be surrounded by blank lines [Expected: 1; Actual: 0; Below] [Context: \"# Heading\"]",
+ "content:2:1 MD033/no-inline-html Inline HTML [Element: br]",
+ "content:2:5 MD047/single-trailing-newline Files should end with a single newline character"
+ ]
+ );
+});
diff --git a/test/markdownlint-test-parallel.mjs b/test/markdownlint-test-parallel.mjs
index e9bc26c0..1ce6121e 100644
--- a/test/markdownlint-test-parallel.mjs
+++ b/test/markdownlint-test-parallel.mjs
@@ -1,6 +1,5 @@
// @ts-check
-// eslint-disable-next-line n/no-unsupported-features/node-builtins
import { availableParallelism } from "node:os";
import { Worker } from "node:worker_threads";
import { lint } from "markdownlint/sync";
diff --git a/test/markdownlint-test-project.mjs b/test/markdownlint-test-project.mjs
index 8de9b93e..4580f41c 100644
--- a/test/markdownlint-test-project.mjs
+++ b/test/markdownlint-test-project.mjs
@@ -17,7 +17,7 @@ const files = await globby(projectFiles);
test("projectFiles", (t) => {
t.plan(2);
- t.is(files.length, 61);
+ t.is(files.length, 62);
const options = {
files,
"config": require("../.markdownlint.json")
@@ -40,7 +40,7 @@ test("projectFilesExtendedAscii", (t) => {
"doc/md036.md"
]);
const filteredFiles = files.filter((file) => !ignoreFiles.has(file));
- t.is(filteredFiles.length, 57);
+ t.is(filteredFiles.length, 58);
const options = {
"files": filteredFiles,
"config": require("../.markdownlint.json"),
diff --git a/test/markdownlint-test-repos-dotnet-docs.mjs b/test/markdownlint-test-repos-dotnet-docs.mjs
index b3a1ec41..11c536f4 100644
--- a/test/markdownlint-test-repos-dotnet-docs.mjs
+++ b/test/markdownlint-test-repos-dotnet-docs.mjs
@@ -9,5 +9,5 @@ test("https://github.com/dotnet/docs", (t) => {
const rootDir = "./test-repos/dotnet-docs";
const globPatterns = [ join(rootDir, "**/*.md") ];
const configPath = join(rootDir, ".markdownlint-cli2.jsonc");
- return lintTestRepo(t, globPatterns, configPath, true);
+ return lintTestRepo(t, globPatterns, configPath, { "table-column-style": false }, true);
});
diff --git a/test/markdownlint-test-repos-mdn-content.mjs b/test/markdownlint-test-repos-mdn-content.mjs
index 71d57968..718a3941 100644
--- a/test/markdownlint-test-repos-mdn-content.mjs
+++ b/test/markdownlint-test-repos-mdn-content.mjs
@@ -9,5 +9,5 @@ test("https://github.com/mdn/content", (t) => {
const rootDir = "./test-repos/mdn-content";
const globPatterns = [ join(rootDir, "**/*.md") ];
const configPath = join(rootDir, ".markdownlint-cli2.jsonc");
- return lintTestRepo(t, globPatterns, configPath, true);
+ return lintTestRepo(t, globPatterns, configPath, { "table-column-style": false }, true);
});
diff --git a/test/markdownlint-test-repos.mjs b/test/markdownlint-test-repos.mjs
index 13d36fe9..317835ca 100644
--- a/test/markdownlint-test-repos.mjs
+++ b/test/markdownlint-test-repos.mjs
@@ -5,19 +5,23 @@ const { join } = path.posix;
import { globby } from "globby";
import jsoncParser from "jsonc-parser";
import jsYaml from "js-yaml";
+import { formatLintResults } from "markdownlint/helpers";
import { lint, readConfig } from "markdownlint/promise";
import { markdownlintParallel } from "./markdownlint-test-parallel.mjs";
+/** @typedef {import("markdownlint").Configuration} Configuration */
+
/**
* Lints a test repository.
*
* @param {Object} t Test instance.
* @param {string[]} globPatterns Array of files to in/exclude.
* @param {string} configPath Path to config file.
+ * @param {Configuration} [configOverrides] Configuration overrides.
* @param {boolean} [parallel] True to lint in parallel.
* @returns {Promise} Test result.
*/
-export function lintTestRepo(t, globPatterns, configPath, parallel) {
+export function lintTestRepo(t, globPatterns, configPath, configOverrides, parallel) {
t.plan(1);
const jsoncParse = (json) => {
const config = jsoncParser.parse(json, [], { "allowTrailingComma": true });
@@ -31,20 +35,23 @@ export function lintTestRepo(t, globPatterns, configPath, parallel) {
const [ files, rawConfig ] = globbyAndReadConfigResults;
// eslint-disable-next-line no-console
console.log(`${t.title}: Linting ${files.length} files...`);
- const config = Object.fromEntries(
+ const cookedConfig = Object.fromEntries(
Object.entries(rawConfig)
.map(([ k, v ]) => [
k.replace(/header/, "heading"),
v
])
);
+ const config = {
+ ...cookedConfig,
+ ...configOverrides
+ };
return (parallel ? markdownlintParallel : lint)({
files,
config
}).then((results) => {
- const resultsString = results.toString();
t.snapshot(
- resultsString,
+ formatLintResults(results).join("\n"),
"Expected linting violations"
);
});
diff --git a/test/markdownlint-test-result-object.mjs b/test/markdownlint-test-result-object.mjs
index a67e3731..87e38d4a 100644
--- a/test/markdownlint-test-result-object.mjs
+++ b/test/markdownlint-test-result-object.mjs
@@ -2,7 +2,9 @@
import test from "ava";
import { lint as lintAsync } from "markdownlint/async";
+import { lint as lintPromise } from "markdownlint/promise";
import { lint as lintSync } from "markdownlint/sync";
+import { convertToResultVersion0, convertToResultVersion1, convertToResultVersion2 } from "markdownlint/helpers";
import { importWithTypeJson } from "./esm-helpers.mjs";
const packageJson = await importWithTypeJson(import.meta, "../package.json");
const { homepage, version } = packageJson;
@@ -405,7 +407,7 @@ test("resultFormattingV3", (t) => new Promise((resolve) => {
"ruleInformation": `${homepage}/blob/v${version}/doc/md037.md`,
"errorDetail": null,
"errorContext": "* e",
- "errorRange": [ 6, 3 ],
+ "errorRange": [ 7, 1 ],
"fixInfo": {
"editColumn": 7,
"deleteCount": 1
@@ -418,7 +420,7 @@ test("resultFormattingV3", (t) => new Promise((resolve) => {
"ruleInformation": `${homepage}/blob/v${version}/doc/md037.md`,
"errorDetail": null,
"errorContext": "s *",
- "errorRange": [ 15, 3 ],
+ "errorRange": [ 16, 1 ],
"fixInfo": {
"editColumn": 16,
"deleteCount": 1
@@ -623,3 +625,40 @@ test("frontMatterResultVersion3", (t) => new Promise((resolve) => {
resolve();
});
}));
+
+test("convertToResultVersionN", async(t) => {
+ t.plan(8);
+ const options = {
+ "files": [
+ "./test/break-all-the-rules.md",
+ "./test/inline-disable-enable.md"
+ ],
+ "strings": {
+ "first": "# Heading",
+ "second": "## Heading"
+ }
+ };
+ const [ base, version3, version2, version1, version0 ] = await Promise.all([
+ lintPromise(options),
+ // @ts-ignore
+ lintPromise({ ...options, "resultVersion": 3 }),
+ // @ts-ignore
+ lintPromise({ ...options, "resultVersion": 2 }),
+ // @ts-ignore
+ lintPromise({ ...options, "resultVersion": 1 }),
+ // @ts-ignore
+ lintPromise({ ...options, "resultVersion": 0 })
+ ]);
+ const v3 = version3;
+ t.deepEqual(v3, base);
+ t.is(v3.toString(), base.toString());
+ const v2 = convertToResultVersion2(base);
+ t.deepEqual(v2, version2);
+ t.is(v2.toString(), version2.toString());
+ const v1 = convertToResultVersion1(base);
+ t.deepEqual(v1, version1);
+ t.is(v1.toString(), version1.toString());
+ const v0 = convertToResultVersion0(base);
+ t.deepEqual(v0, version0);
+ t.is(v0.toString(), version0.toString());
+});
diff --git a/test/markdownlint-test-scenarios.mjs b/test/markdownlint-test-scenarios.mjs
index 0d0a3faf..14ab66a4 100644
--- a/test/markdownlint-test-scenarios.mjs
+++ b/test/markdownlint-test-scenarios.mjs
@@ -33,7 +33,7 @@ function createTestForFile(file) {
.filter((error) => !!error.ruleInformation);
for (const error of errors) {
error.ruleInformation =
- error.ruleInformation.replace(/v\d+\.\d+\.\d+/, "v0.0.0");
+ error.ruleInformation.replace(/v\d+\.\d+\.\d+/, "v0.0.0");
}
// Match identified issues by MD### markers
const marker = /\{(MD\d+)(?::([-+]?)(\d+))?\}/g;
diff --git a/test/markdownlint-test.mjs b/test/markdownlint-test.mjs
index 9ebeaf0c..7345fab5 100644
--- a/test/markdownlint-test.mjs
+++ b/test/markdownlint-test.mjs
@@ -17,6 +17,7 @@ import { getVersion } from "markdownlint";
import { lint as lintAsync } from "markdownlint/async";
import { lint as lintPromise } from "markdownlint/promise";
import { lint as lintSync } from "markdownlint/sync";
+import * as cache from "../lib/cache.mjs";
import * as constants from "../lib/constants.mjs";
import rules from "../lib/rules.mjs";
import customRules from "./rules/rules.cjs";
@@ -48,46 +49,42 @@ function getMarkdownItFactory(markdownItPlugins) {
}
test("simpleAsync", (t) => new Promise((resolve) => {
+ t.plan(3);
+ const options = {
+ "strings": {
+ "content": "# Heading"
+ }
+ };
+ lintAsync(options, (err, actual) => {
+ t.falsy(err);
+ t.is(actual?.content.length, 1);
+ t.is(actual?.content[0].ruleNames[0], "MD047");
+ resolve();
+ });
+}));
+
+test("simpleSync", (t) => {
t.plan(2);
const options = {
"strings": {
"content": "# Heading"
}
};
- const expected = "content: 1: MD047/single-trailing-newline " +
- "Files should end with a single newline character";
- lintAsync(options, (err, actual) => {
- t.falsy(err);
- // @ts-ignore
- t.is(actual.toString(), expected, "Unexpected results.");
- resolve();
- });
-}));
-
-test("simpleSync", (t) => {
- t.plan(1);
- const options = {
- "strings": {
- "content": "# Heading"
- }
- };
- const expected = "content: 1: MD047/single-trailing-newline " +
- "Files should end with a single newline character";
- const actual = lintSync(options).toString();
- t.is(actual, expected, "Unexpected results.");
+ const actual = lintSync(options);
+ t.is(actual.content.length, 1);
+ t.is(actual.content[0].ruleNames[0], "MD047");
});
test("simplePromise", (t) => {
- t.plan(1);
+ t.plan(2);
const options = {
"strings": {
"content": "# Heading"
}
};
- const expected = "content: 1: MD047/single-trailing-newline " +
- "Files should end with a single newline character";
return lintPromise(options).then((actual) => {
- t.is(actual.toString(), expected, "Unexpected results.");
+ t.is(actual.content.length, 1);
+ t.is(actual.content[0].ruleNames[0], "MD047");
});
});
@@ -467,7 +464,7 @@ test("styleAll", async(t) => {
"MD042": [ 81 ],
"MD045": [ 85 ],
"MD046": [ 49, 73, 77 ],
- "MD047": [ 140 ],
+ "MD047": [ 144 ],
"MD048": [ 77 ],
"MD049": [ 90 ],
"MD050": [ 94 ],
@@ -475,8 +472,10 @@ test("styleAll", async(t) => {
"MD052": [ 98 ],
"MD053": [ 100 ],
"MD055": [ 110 ],
- "MD056": [ 114 ],
- "MD058": [ 117, 119 ]
+ "MD056": [ 116 ],
+ "MD058": [ 119, 121 ],
+ "MD059": [ 124 ],
+ "MD060": [ 110 ]
}
};
t.deepEqual(actualResult, expectedResult, "Undetected issues.");
@@ -515,7 +514,7 @@ test("styleRelaxed", async(t) => {
"MD042": [ 81 ],
"MD045": [ 85 ],
"MD046": [ 49, 73, 77 ],
- "MD047": [ 140 ],
+ "MD047": [ 144 ],
"MD048": [ 77 ],
"MD049": [ 90 ],
"MD050": [ 94 ],
@@ -523,8 +522,10 @@ test("styleRelaxed", async(t) => {
"MD052": [ 98 ],
"MD053": [ 100 ],
"MD055": [ 110 ],
- "MD056": [ 114 ],
- "MD058": [ 117, 119 ]
+ "MD056": [ 116 ],
+ "MD058": [ 119, 121 ],
+ "MD059": [ 124 ],
+ "MD060": [ 110 ]
}
};
t.deepEqual(actualResult, expectedResult, "Undetected issues.");
@@ -541,6 +542,7 @@ test("nullFrontMatter", (t) => new Promise((resolve) => {
"default": false,
"MD010": true
},
+ // @ts-ignore
"resultVersion": 0
}, function callback(err, result) {
t.falsy(err);
@@ -593,6 +595,7 @@ test("noInlineConfig", (t) => new Promise((resolve) => {
].join("\n")
},
"noInlineConfig": true,
+ // @ts-ignore
"resultVersion": 0
}, function callback(err, result) {
t.falsy(err);
@@ -641,7 +644,7 @@ test("readmeHeadings", (t) => new Promise((resolve) => {
"##### options.handleRuleFailures",
"##### options.markdownItFactory",
"##### options.noInlineConfig",
- "##### options.resultVersion",
+ "##### ~~options.resultVersion~~",
"##### options.strings",
"#### callback",
"#### result",
@@ -832,7 +835,7 @@ test("customFileSystemAsync", (t) => new Promise((resolve) => {
}));
test("readme", async(t) => {
- t.plan(130);
+ t.plan(132);
const tagToRules = {};
for (const rule of rules) {
for (const tag of rule.tags) {
@@ -907,7 +910,7 @@ test("readme", async(t) => {
});
test("validateJsonUsingConfigSchemaStrict", async(t) => {
- t.plan(196);
+ t.plan(211);
// @ts-ignore
const ajv = new Ajv(ajvOptions);
const validateSchemaStrict = ajv.compile(configSchemaStrict);
@@ -1029,7 +1032,7 @@ test("validateConfigExampleJson", (t) => {
});
test("allBuiltInRulesHaveValidUrl", (t) => {
- t.plan(156);
+ t.plan(159);
for (const rule of rules) {
// @ts-ignore
t.truthy(rule.information);
@@ -1063,6 +1066,71 @@ test("someCustomRulesHaveValidUrl", (t) => {
}
});
+test("coverageForCacheMicromarkTokensWhenUndefined", (t) => {
+ t.plan(1);
+ cache.initialize(undefined);
+ t.is(cache.micromarkTokens().length, 0);
+});
+
+test("micromarkParseCalledWhenNeeded", (t) => new Promise((resolve) => {
+ t.plan(3);
+ /** @type {import("markdownlint").Rule} */
+ const markdownItRule = {
+ "names": [ "markdown-it-rule" ],
+ "description": "markdown-it rule",
+ "tags": [ "test" ],
+ "parser": "markdownit",
+ "function": () => {
+ t.true(cache.micromarkTokens().length > 0);
+ }
+ };
+ lintAsync({
+ "strings": {
+ "string": "# Heading\n\nText\n"
+ },
+ "config": {
+ "markdown-it-rule": true
+ },
+ "customRules": [ markdownItRule ],
+ "markdownItFactory": getMarkdownItFactory([])
+ }, function callback(err, actual) {
+ t.falsy(err);
+ const expected = { "string": [] };
+ t.deepEqual(actual, expected, "Unexpected issues.");
+ resolve();
+ });
+}));
+
+test("micromarkParseSkippedWhenNotNeeded", (t) => new Promise((resolve) => {
+ t.plan(3);
+ /** @type {import("markdownlint").Rule} */
+ const markdownItRule = {
+ "names": [ "markdown-it-rule" ],
+ "description": "markdown-it rule",
+ "tags": [ "test" ],
+ "parser": "markdownit",
+ "function": () => {
+ t.true(cache.micromarkTokens().length === 0);
+ }
+ };
+ lintAsync({
+ "strings": {
+ "string": "# Heading\n\nText\n"
+ },
+ "config": {
+ "default": false,
+ "markdown-it-rule": true
+ },
+ "customRules": [ markdownItRule ],
+ "markdownItFactory": getMarkdownItFactory([])
+ }, function callback(err, actual) {
+ t.falsy(err);
+ const expected = { "string": [] };
+ t.deepEqual(actual, expected, "Unexpected issues.");
+ resolve();
+ });
+}));
+
test("markdownItPluginsSingle", (t) => new Promise((resolve) => {
t.plan(4);
lintAsync({
@@ -1159,6 +1227,7 @@ Text with: [^footnote]
[reference]: https://example.com
`
},
+ // @ts-ignore
"resultVersion": 0
}, (err, actual) => {
t.falsy(err);
@@ -1208,7 +1277,7 @@ test("token-map-spans", (t) => {
});
test("configParsersInvalid", async(t) => {
- t.plan(1);
+ t.plan(2);
const options = {
"strings": {
"content": [
@@ -1221,10 +1290,9 @@ test("configParsersInvalid", async(t) => {
].join("\n")
}
};
- const expected = "content: 1: MD041/first-line-heading/first-line-h1 " +
- "First line in a file should be a top-level heading [Context: \"Text\"]";
const actual = await lintPromise(options);
- t.is(actual.toString(), expected, "Unexpected results.");
+ t.is(actual.content.length, 1);
+ t.is(actual.content[0].ruleNames[0], "MD041");
});
test("configParsersJSON", async(t) => {
@@ -1244,7 +1312,7 @@ test("configParsersJSON", async(t) => {
}
};
const actual = await lintPromise(options);
- t.is(actual.toString(), "", "Unexpected results.");
+ t.is(actual.content.length, 0);
});
test("configParsersJSONC", async(t) => {
@@ -1266,7 +1334,7 @@ test("configParsersJSONC", async(t) => {
"configParsers": [ jsoncParser.parse ]
};
const actual = await lintPromise(options);
- t.is(actual.toString(), "", "Unexpected results.");
+ t.is(actual.content.length, 0);
});
test("configParsersYAML", async(t) => {
@@ -1287,7 +1355,7 @@ test("configParsersYAML", async(t) => {
};
// @ts-ignore
const actual = await lintPromise(options);
- t.is(actual.toString(), "", "Unexpected results.");
+ t.is(actual.content.length, 0);
});
test("configParsersTOML", async(t) => {
@@ -1309,7 +1377,7 @@ test("configParsersTOML", async(t) => {
]
};
const actual = await lintPromise(options);
- t.is(actual.toString(), "", "Unexpected results.");
+ t.is(actual.content.length, 0);
});
test("getVersion", (t) => {
diff --git a/test/no-alt-text.md b/test/no-alt-text.md
index 78c348ed..9641aadb 100644
--- a/test/no-alt-text.md
+++ b/test/no-alt-text.md
@@ -68,6 +68,18 @@ Uppercase image tag with no alt set {MD045}
{MD045}
+No alt attribute is okay when the image is hidden from assistive technology:
+
+
+
+But not when disabled: {MD045}
+
+Multi-line image tag aria-hidden:
+
+
[notitle]: image.jpg
diff --git a/test/ordered-list-item-prefix-double-digits-ordered.md b/test/ordered-list-item-prefix-double-digits-ordered.md
new file mode 100644
index 00000000..c27c41ae
--- /dev/null
+++ b/test/ordered-list-item-prefix-double-digits-ordered.md
@@ -0,0 +1,42 @@
+# Ordered ist Item Prefix Double Digits Ordered
+
+Good list:
+
+1. Item
+2. Item
+3. Item
+4. Item
+5. Item
+6. Item
+7. Item
+8. Item
+9. Item
+10. Item
+11. Item
+
+Bad list 1:
+
+1. Item
+10. Item {MD029}
+9. Item {MD029}
+
+Bad list 2:
+
+11. Item {MD029}
+10. Item {MD029}
+
+Bad list 3
+
+12. Item {MD029}
+1. Item {MD029}
+
+Bad list 4:
+
+0. Item
+10. Item {MD029}
+
+
diff --git a/test/ordered-list-item-prefix-sublists-ordered.md b/test/ordered-list-item-prefix-sublists-ordered.md
new file mode 100644
index 00000000..ef1aeb12
--- /dev/null
+++ b/test/ordered-list-item-prefix-sublists-ordered.md
@@ -0,0 +1,47 @@
+# Ordered List Item Prefix Sublists Ordered
+
+Good list and sublist:
+
+1. Item
+2. Item
+ 1. Item
+ 2. Item
+3. Item
+
+Good list and bad sublist:
+
+1. Item
+2. Item
+ 3. Item
+ 4. Item
+3. Item
+
+Bad list and good sublist:
+
+1. Item
+4. Item {MD029}
+ 1. Item
+ 2. Item
+5. Item {MD029}
+
+Bad list and bad sublist:
+
+1. Item
+4. Item {MD029}
+ 1. Item
+ 3. Item {MD029}
+5. Item {MD029}
+
+Bad list and bad sublist (0):
+
+0. Item
+4. Item {MD029}
+ 1. Item
+ 3. Item {MD029}
+5. Item {MD029}
+
+
diff --git a/test/reference-links-and-images-ignored-labels-empty.md b/test/reference-links-and-images-ignored-labels-empty.md
new file mode 100644
index 00000000..7339e58d
--- /dev/null
+++ b/test/reference-links-and-images-ignored-labels-empty.md
@@ -0,0 +1,19 @@
+# Reference Links and Images (Ignored Labels Empty)
+
+[full][full] {MD052}
+
+[collapsed][] {MD052}
+
+[shortcut] {MD052}
+
+[invalid][invalid] {MD052}
+
+- [ ] Unchecked task list item
+- [x] Checked task list item {MD052}
+
+
diff --git a/test/reference-links-and-images-ignored-labels.md b/test/reference-links-and-images-ignored-labels.md
new file mode 100644
index 00000000..3b055e83
--- /dev/null
+++ b/test/reference-links-and-images-ignored-labels.md
@@ -0,0 +1,23 @@
+# Reference Links and Images (Ignored Labels)
+
+[full][full]
+
+[collapsed][]
+
+[shortcut]
+
+[invalid][invalid] {MD052}
+
+- [ ] Unchecked task list item
+- [x] Checked task list item {MD052}
+
+
diff --git a/test/reference-links-and-images-shortcuts.md b/test/reference-links-and-images-shortcuts.md
index e6765d64..16126f9f 100644
--- a/test/reference-links-and-images-shortcuts.md
+++ b/test/reference-links-and-images-shortcuts.md
@@ -84,6 +84,16 @@ Footnote[^1]
Missing[^2] {MD052}
+## GitHub Flavored Markdown Task List Items
+
+- [ ] Unchecked task list item
+- [x] Checked task list item
+
+- [x] alpha
+ - [ ] beta
+ - [x] charlie
+- [ ] delta
+
## Valid Labels
[label]: https://example.com/label
diff --git a/test/reference-links-and-images.md b/test/reference-links-and-images.md
index 95fdd4eb..474ad548 100644
--- a/test/reference-links-and-images.md
+++ b/test/reference-links-and-images.md
@@ -242,3 +242,8 @@ Text with a [^footnote] in it
[^footnote]: Footnote with an [embedded-reference][] in it
[embedded-reference]: https://example.com/embedded-reference
+
+## GitHub Flavored Markdown Task List Items
+
+- [ ] Unchecked task list item
+- [x] Checked task list item
diff --git a/test/snapshots/markdownlint-test-exports.mjs.md b/test/snapshots/markdownlint-test-exports.mjs.md
index 1f86f881..a29305c2 100644
--- a/test/snapshots/markdownlint-test-exports.mjs.md
+++ b/test/snapshots/markdownlint-test-exports.mjs.md
@@ -28,12 +28,16 @@ Generated by [AVA](https://avajs.dev).
'clearHtmlCommentText',
'cloneIfArray',
'cloneIfUrl',
+ 'convertToResultVersion0',
+ 'convertToResultVersion1',
+ 'convertToResultVersion2',
'default',
'ellipsify',
'endOfLineGemojiCodeRe',
'endOfLineHtmlEntityRe',
'escapeForRegExp',
'expandTildePath',
+ 'formatLintResults',
'frontMatterHasTitle',
'frontMatterRe',
'getHtmlAttributeRe',
diff --git a/test/snapshots/markdownlint-test-exports.mjs.snap b/test/snapshots/markdownlint-test-exports.mjs.snap
index a21e64a2..124c0ee3 100644
Binary files a/test/snapshots/markdownlint-test-exports.mjs.snap and b/test/snapshots/markdownlint-test-exports.mjs.snap differ
diff --git a/test/snapshots/markdownlint-test-repos-dotnet-docs.mjs.md b/test/snapshots/markdownlint-test-repos-dotnet-docs.mjs.md
index 378045fb..8e41b4fa 100644
--- a/test/snapshots/markdownlint-test-repos-dotnet-docs.mjs.md
+++ b/test/snapshots/markdownlint-test-repos-dotnet-docs.mjs.md
@@ -8,43 +8,13 @@ Generated by [AVA](https://avajs.dev).
> Expected linting violations
- `test-repos/dotnet-docs/README.md: 21: MD009/no-trailing-spaces Trailing spaces [Expected: 0 or 2; Actual: 1]␊
- test-repos/dotnet-docs/README.md: 39: MD009/no-trailing-spaces Trailing spaces [Expected: 0 or 2; Actual: 1]␊
- test-repos/dotnet-docs/SECURITY.md: 21: MD007/ul-indent Unordered list indentation [Expected: 0; Actual: 2]␊
- test-repos/dotnet-docs/SECURITY.md: 22: MD007/ul-indent Unordered list indentation [Expected: 0; Actual: 2]␊
- test-repos/dotnet-docs/SECURITY.md: 23: MD007/ul-indent Unordered list indentation [Expected: 0; Actual: 2]␊
- test-repos/dotnet-docs/SECURITY.md: 24: MD007/ul-indent Unordered list indentation [Expected: 0; Actual: 2]␊
- test-repos/dotnet-docs/SECURITY.md: 25: MD007/ul-indent Unordered list indentation [Expected: 0; Actual: 2]␊
- test-repos/dotnet-docs/SECURITY.md: 26: MD007/ul-indent Unordered list indentation [Expected: 0; Actual: 2]␊
- test-repos/dotnet-docs/SECURITY.md: 27: MD007/ul-indent Unordered list indentation [Expected: 0; Actual: 2]␊
- test-repos/dotnet-docs/SECURITY.md: 17: MD009/no-trailing-spaces Trailing spaces [Expected: 0 or 2; Actual: 1]␊
- test-repos/dotnet-docs/docs/architecture/blazor-for-web-forms-developers/security-authentication-authorization.md: 258: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/dotnet-docs/docs/architecture/cloud-native/deploy-eshoponcontainers-azure.md: 60: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/dotnet-docs/docs/core/diagnostics/built-in-metrics-aspnetcore.md: 12: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/dotnet-docs/docs/core/testing/microsoft-testing-platform-architecture-extensions.md: 501: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/dotnet-docs/docs/core/testing/unit-testing-code-coverage.md: 274: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/dotnet-docs/docs/csharp/delegate-class.md: 41: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/dotnet-docs/docs/csharp/tour-of-csharp/tutorials/list-collection.md: 94: MD059/descriptive-link-text Link text should be descriptive [Context: "[more]"]␊
- test-repos/dotnet-docs/docs/csharp/whats-new/breaking-changes.md: 10: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/dotnet-docs/docs/framework/windows-workflow-foundation/samples/sql-tracking.md: 42: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/dotnet-docs/docs/fsharp/language-reference/computation-expressions.md: 277: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/dotnet-docs/docs/fundamentals/code-analysis/quality-rules/ca1066.md: 28: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/dotnet-docs/docs/fundamentals/code-analysis/quality-rules/ca1067.md: 28: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/dotnet-docs/docs/fundamentals/networking/http/httpclient-migrate-from-httpwebrequest.md: 340: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/dotnet-docs/docs/fundamentals/networking/http/httpclient-migrate-from-httpwebrequest.md: 580: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/dotnet-docs/docs/orleans/deployment/consul-deployment.md: 11: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/dotnet-docs/docs/orleans/streaming/index.md: 107: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/dotnet-docs/docs/orleans/streaming/streams-programming-apis.md: 14: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/dotnet-docs/docs/orleans/streaming/streams-programming-apis.md: 321: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/dotnet-docs/docs/orleans/streaming/streams-why.md: 68: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/dotnet-docs/docs/orleans/tutorials-and-samples/overview-helloworld.md: 17: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/dotnet-docs/docs/standard/native-interop/tutorial-comwrappers.md: 251: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/dotnet-docs/includes/core-changes/aspnetcore/3.0/authn-apis-json-types.md: 16: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/dotnet-docs/includes/core-changes/aspnetcore/3.0/authn-google-plus-authn-changes.md: 19: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/dotnet-docs/includes/core-changes/aspnetcore/3.0/kestrel-connection-adapters-removed.md: 25: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/dotnet-docs/includes/migration-guide/retargeting/networking/only-tls-10-11-12-protocols-supported-systemnetservicepointmanager.md: 11: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/dotnet-docs/includes/migration-guide/retargeting/security/cspparametersparentwindowhandle-now-expects-hwnd-value.md: 23: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/dotnet-docs/includes/migration-guide/retargeting/wf/workflow-30-types-are-obsolete.md: 9: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/dotnet-docs/includes/migration-guide/retargeting/wf/workflow-30-types-are-obsolete.md: 9: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/dotnet-docs/includes/migration-guide/runtime/runtime/improved-wcf-chain-trust-certificate-validation-for-nettcp-authentication.md: 5: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/dotnet-docs/samples/snippets/core/tutorials/netcore-hosting/csharp/HostWithHostFxr/readme.md: 3: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]`
+ `test-repos/dotnet-docs/README.md:21:383 MD009/no-trailing-spaces Trailing spaces [Expected: 0 or 2; Actual: 1]␊
+ test-repos/dotnet-docs/README.md:39:451 MD009/no-trailing-spaces Trailing spaces [Expected: 0 or 2; Actual: 1]␊
+ test-repos/dotnet-docs/SECURITY.md:21:1 MD007/ul-indent Unordered list indentation [Expected: 0; Actual: 2]␊
+ test-repos/dotnet-docs/SECURITY.md:22:1 MD007/ul-indent Unordered list indentation [Expected: 0; Actual: 2]␊
+ test-repos/dotnet-docs/SECURITY.md:23:1 MD007/ul-indent Unordered list indentation [Expected: 0; Actual: 2]␊
+ test-repos/dotnet-docs/SECURITY.md:24:1 MD007/ul-indent Unordered list indentation [Expected: 0; Actual: 2]␊
+ test-repos/dotnet-docs/SECURITY.md:25:1 MD007/ul-indent Unordered list indentation [Expected: 0; Actual: 2]␊
+ test-repos/dotnet-docs/SECURITY.md:26:1 MD007/ul-indent Unordered list indentation [Expected: 0; Actual: 2]␊
+ test-repos/dotnet-docs/SECURITY.md:27:1 MD007/ul-indent Unordered list indentation [Expected: 0; Actual: 2]␊
+ test-repos/dotnet-docs/SECURITY.md:17:252 MD009/no-trailing-spaces Trailing spaces [Expected: 0 or 2; Actual: 1]`
diff --git a/test/snapshots/markdownlint-test-repos-dotnet-docs.mjs.snap b/test/snapshots/markdownlint-test-repos-dotnet-docs.mjs.snap
index d0407aa6..6e211bc9 100644
Binary files a/test/snapshots/markdownlint-test-repos-dotnet-docs.mjs.snap and b/test/snapshots/markdownlint-test-repos-dotnet-docs.mjs.snap differ
diff --git a/test/snapshots/markdownlint-test-repos-mdn-content.mjs.md b/test/snapshots/markdownlint-test-repos-mdn-content.mjs.md
index 3758a9a7..f8e09a68 100644
--- a/test/snapshots/markdownlint-test-repos-mdn-content.mjs.md
+++ b/test/snapshots/markdownlint-test-repos-mdn-content.mjs.md
@@ -8,44 +8,71 @@ Generated by [AVA](https://avajs.dev).
> Expected linting violations
- `test-repos/mdn-content/files/en-us/learn_web_development/core/css_layout/fundamental_layout_comprehension/index.md: 16: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/mdn-content/files/en-us/learn_web_development/core/scripting/functions/index.md: 91: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/mdn-content/files/en-us/learn_web_development/core/structuring_content/creating_links/index.md: 255: MD059/descriptive-link-text Link text should be descriptive [Context: "[Click here]"]␊
- test-repos/mdn-content/files/en-us/learn_web_development/core/styling_basics/box_model/index.md: 294: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/mdn-content/files/en-us/learn_web_development/extensions/performance/multimedia/index.md: 105: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/mdn-content/files/en-us/learn_web_development/extensions/server-side/django/development_environment/index.md: 226: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/mdn-content/files/en-us/learn_web_development/extensions/server-side/django/development_environment/index.md: 465: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/mdn-content/files/en-us/learn_web_development/extensions/server-side/django/models/index.md: 492: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/mdn-content/files/en-us/learn_web_development/extensions/server-side/express_nodejs/deployment/index.md: 380: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/mdn-content/files/en-us/learn_web_development/howto/tools_and_setup/how_much_does_it_cost/index.md: 81: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/mdn-content/files/en-us/learn_web_development/howto/tools_and_setup/how_much_does_it_cost/index.md: 81: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/mdn-content/files/en-us/learn_web_development/howto/web_mechanics/what_is_a_domain_name/index.md: 175: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/mdn-content/files/en-us/mdn/writing_guidelines/howto/document_an_http_header/index.md: 21: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/mdn-content/files/en-us/mdn/writing_guidelines/howto/json_structured_data/index.md: 90: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/mdn-content/files/en-us/mdn/writing_guidelines/howto/json_structured_data/index.md: 123: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/mdn-content/files/en-us/mdn/writing_guidelines/howto/json_structured_data/index.md: 132: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/mdn-content/files/en-us/mdn/writing_guidelines/writing_style_guide/index.md: 458: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/mdn-content/files/en-us/mozilla/add-ons/webextensions/native_messaging/index.md: 399: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/mdn-content/files/en-us/mozilla/firefox/releases/17/index.md: 39: MD059/descriptive-link-text Link text should be descriptive [Context: "[link]"]␊
- test-repos/mdn-content/files/en-us/mozilla/firefox/releases/22/index.md: 57: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/mdn-content/files/en-us/mozilla/firefox/releases/29/index.md: 29: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/mdn-content/files/en-us/mozilla/firefox/releases/3/updating_extensions/index.md: 162: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/mdn-content/files/en-us/mozilla/firefox/releases/44/index.md: 218: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/mdn-content/files/en-us/web/accessibility/aria/reference/roles/index.md: 88: MD059/descriptive-link-text Link text should be descriptive [Context: "[link]"]␊
- test-repos/mdn-content/files/en-us/web/api/background_fetch_api/index.md: 89: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/mdn-content/files/en-us/web/api/filesystem/index.md: 12: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/mdn-content/files/en-us/web/api/html_drag_and_drop_api/index.md: 243: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/mdn-content/files/en-us/web/api/media_source_extensions_api/transcoding_assets_for_mse/index.md: 28: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/mdn-content/files/en-us/web/api/webglrenderingcontext/getextension/index.md: 46: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/mdn-content/files/en-us/web/api/webglrenderingcontext/getsupportedextensions/index.md: 44: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/mdn-content/files/en-us/web/css/justify-items/index.md: 62: MD059/descriptive-link-text Link text should be descriptive [Context: "[more]"]␊
- test-repos/mdn-content/files/en-us/web/css/justify-items/index.md: 63: MD059/descriptive-link-text Link text should be descriptive [Context: "[more]"]␊
- test-repos/mdn-content/files/en-us/web/css/justify-items/index.md: 64: MD059/descriptive-link-text Link text should be descriptive [Context: "[more]"]␊
- test-repos/mdn-content/files/en-us/web/html/attributes/rel/preconnect/index.md: 22: MD059/descriptive-link-text Link text should be descriptive [Context: "[Link]"]␊
- test-repos/mdn-content/files/en-us/web/performance/guides/dns-prefetch/index.md: 73: MD059/descriptive-link-text Link text should be descriptive [Context: "[\\]"]␊
- test-repos/mdn-content/files/en-us/web/performance/guides/speculative_loading/index.md: 49: MD059/descriptive-link-text Link text should be descriptive [Context: "[Link]"]␊
- test-repos/mdn-content/files/en-us/web/performance/guides/speculative_loading/index.md: 89: MD059/descriptive-link-text Link text should be descriptive [Context: "[Link]"]␊
- test-repos/mdn-content/files/en-us/web/svg/tutorials/svg_from_scratch/getting_started/index.md: 28: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/mdn-content/files/en-us/web/uri/reference/schemes/data/index.md: 27: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/mdn-content/files/en-us/web/uri/reference/schemes/data/index.md: 27: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/mdn-content/files/en-us/web/xml/xpath/guides/introduction_to_using_xpath_in_javascript/index.md: 42: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]`
+ `test-repos/mdn-content/files/en-us/glossary/denial_of_service/index.md:14 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊
+ test-repos/mdn-content/files/en-us/glossary/flex/index.md:14 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊
+ test-repos/mdn-content/files/en-us/glossary/function/index.md:12 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊
+ test-repos/mdn-content/files/en-us/glossary/https_rr/index.md:13 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊
+ test-repos/mdn-content/files/en-us/glossary/parameter/index.md:31 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊
+ test-repos/mdn-content/files/en-us/glossary/prefetch/index.md:12 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊
+ test-repos/mdn-content/files/en-us/glossary/session_hijacking/index.md:14 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊
+ test-repos/mdn-content/files/en-us/glossary/time_to_interactive/index.md:12 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h4]␊
+ test-repos/mdn-content/files/en-us/glossary/truthy/index.md:30 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊
+ test-repos/mdn-content/files/en-us/glossary/xhtml/index.md:12 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊
+ test-repos/mdn-content/files/en-us/glossary/xlink/index.md:16 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊
+ test-repos/mdn-content/files/en-us/learn_web_development/howto/solve_html_problems/index.md:11 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊
+ test-repos/mdn-content/files/en-us/mozilla/add-ons/contact_us/index.md:10 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊
+ test-repos/mdn-content/files/en-us/mozilla/add-ons/webextensions/manifest.json/externally_connectable/index.md:53 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊
+ test-repos/mdn-content/files/en-us/mozilla/add-ons/webextensions/manifest.json/host_permissions/index.md:39 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊
+ test-repos/mdn-content/files/en-us/mozilla/firefox/releases/1.5/what_s_new_in_1.5_alpha/index.md:10 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊
+ test-repos/mdn-content/files/en-us/mozilla/firefox/releases/3/dom_improvements/index.md:20 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊
+ test-repos/mdn-content/files/en-us/mozilla/firefox/releases/3/full_page_zoom/index.md:10 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊
+ test-repos/mdn-content/files/en-us/mozilla/firefox/releases/3/notable_bugs_fixed/index.md:26 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊
+ test-repos/mdn-content/files/en-us/mozilla/firefox/releases/3/templates/index.md:10 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊
+ test-repos/mdn-content/files/en-us/mozilla/firefox/releases/3/xul_improvements_in_firefox_3/index.md:10 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊
+ test-repos/mdn-content/files/en-us/web/accessibility/aria/how_to/file_aria-related_bugs/index.md:10 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊
+ test-repos/mdn-content/files/en-us/web/api/canvasrenderingcontext2d/save/index.md:16 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊
+ test-repos/mdn-content/files/en-us/web/api/delegatedinktrailpresenter/expectedimprovement/index.md:16 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊
+ test-repos/mdn-content/files/en-us/web/api/delegatedinktrailpresenter/presentationarea/index.md:19 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊
+ test-repos/mdn-content/files/en-us/web/api/fetchevent/respondwith/index.md:30 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊
+ test-repos/mdn-content/files/en-us/web/api/htmlelement/dataset/index.md:40 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊
+ test-repos/mdn-content/files/en-us/web/api/htmlelement/editcontext/index.md:17 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊
+ test-repos/mdn-content/files/en-us/web/api/reportbody/index.md:12 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊
+ test-repos/mdn-content/files/en-us/web/api/rtcicecandidatepairstats/bytesdiscardedonsend/index.md:17 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊
+ test-repos/mdn-content/files/en-us/web/api/rtcicecandidatepairstats/consentrequestssent/index.md:19 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊
+ test-repos/mdn-content/files/en-us/web/api/rtcicecandidatepairstats/packetsdiscardedonsend/index.md:17 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊
+ test-repos/mdn-content/files/en-us/web/api/rtcicecandidatepairstats/packetsreceived/index.md:15 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊
+ test-repos/mdn-content/files/en-us/web/api/rtcicecandidatepairstats/packetssent/index.md:15 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊
+ test-repos/mdn-content/files/en-us/web/api/rtcicecandidatestats/candidatetype/index.md:13 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊
+ test-repos/mdn-content/files/en-us/web/api/rtcicecandidatestats/foundation/index.md:19 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊
+ test-repos/mdn-content/files/en-us/web/api/rtcicecandidatestats/priority/index.md:13 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊
+ test-repos/mdn-content/files/en-us/web/api/rtcicecandidatestats/usernamefragment/index.md:19 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊
+ test-repos/mdn-content/files/en-us/web/api/rtcrtpreceiver/transform/index.md:17 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊
+ test-repos/mdn-content/files/en-us/web/api/rtcrtpsender/transform/index.md:17 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊
+ test-repos/mdn-content/files/en-us/web/api/texttrack/mode/index.md:21 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊
+ test-repos/mdn-content/files/en-us/web/api/webrtc_api/build_a_phone_with_peerjs/index.md:15 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊
+ test-repos/mdn-content/files/en-us/web/css/css_backgrounds_and_borders/index.md:19 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊
+ test-repos/mdn-content/files/en-us/web/css/css_selectors/selector_structure/index.md:14 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊
+ test-repos/mdn-content/files/en-us/web/css/font-variant-caps/index.md:54 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊
+ test-repos/mdn-content/files/en-us/web/html/reference/attributes/crossorigin/index.md:63 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊
+ test-repos/mdn-content/files/en-us/web/html/reference/attributes/maxlength/index.md:18 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊
+ test-repos/mdn-content/files/en-us/web/html/reference/attributes/required/index.md:26 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊
+ test-repos/mdn-content/files/en-us/web/html/reference/elements/input/time/index.md:43 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊
+ test-repos/mdn-content/files/en-us/web/html/reference/global_attributes/data-_star_/index.md:73 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊
+ test-repos/mdn-content/files/en-us/web/html/reference/global_attributes/itemscope/index.md:19 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊
+ test-repos/mdn-content/files/en-us/web/progressive_web_apps/manifest/reference/display_override/index.md:17 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊
+ test-repos/mdn-content/files/en-us/web/progressive_web_apps/manifest/reference/file_handlers/index.md:22 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊
+ test-repos/mdn-content/files/en-us/web/progressive_web_apps/manifest/reference/launch_handler/index.md:15 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊
+ test-repos/mdn-content/files/en-us/web/progressive_web_apps/manifest/reference/note_taking/index.md:15 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊
+ test-repos/mdn-content/files/en-us/web/progressive_web_apps/manifest/reference/protocol_handlers/index.md:17 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊
+ test-repos/mdn-content/files/en-us/web/progressive_web_apps/manifest/reference/serviceworker/index.md:16 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊
+ test-repos/mdn-content/files/en-us/web/progressive_web_apps/manifest/reference/share_target/index.md:20 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊
+ test-repos/mdn-content/files/en-us/web/progressive_web_apps/tutorials/js13kgames/app_structure/index.md:17 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊
+ test-repos/mdn-content/files/en-us/web/svg/guides/namespaces_crash_course/index.md:10 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊
+ test-repos/mdn-content/files/en-us/web/svg/guides/scripting/index.md:13 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊
+ test-repos/mdn-content/files/en-us/web/svg/tutorials/svg_from_scratch/other_content_in_svg/index.md:12 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊
+ test-repos/mdn-content/files/en-us/web/webdriver/reference/capabilities/firefoxoptions/index.md:18 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h5]␊
+ test-repos/mdn-content/files/en-us/web/xml/xpath/guides/snippets/index.md:10 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊
+ test-repos/mdn-content/files/en-us/web/xml/xslt/guides/common_errors/index.md:8 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊
+ test-repos/mdn-content/files/en-us/web/xml/xslt/guides/pi_parameters/index.md:8 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊
+ test-repos/mdn-content/files/en-us/web/xml/xslt/reference/element/stylesheet/index.md:10 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊
+ test-repos/mdn-content/files/en-us/webassembly/guides/existing_c_to_wasm/index.md:66 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]`
diff --git a/test/snapshots/markdownlint-test-repos-mdn-content.mjs.snap b/test/snapshots/markdownlint-test-repos-mdn-content.mjs.snap
index 8c7fc2c5..cef24737 100644
Binary files a/test/snapshots/markdownlint-test-repos-mdn-content.mjs.snap and b/test/snapshots/markdownlint-test-repos-mdn-content.mjs.snap differ
diff --git a/test/snapshots/markdownlint-test-repos-small.mjs.md b/test/snapshots/markdownlint-test-repos-small.mjs.md
index 8d87b691..e02c5e6c 100644
--- a/test/snapshots/markdownlint-test-repos-small.mjs.md
+++ b/test/snapshots/markdownlint-test-repos-small.mjs.md
@@ -8,236 +8,307 @@ Generated by [AVA](https://avajs.dev).
> Expected linting violations
- `test-repos/apache-airflow/clients/python/CHANGELOG.md: 40: MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "v2.9.1"]␊
- test-repos/apache-airflow/clients/python/CHANGELOG.md: 47: MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "v2.9.0"]␊
- test-repos/apache-airflow/clients/python/CHANGELOG.md: 66: MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "v2.8.0"]␊
- test-repos/apache-airflow/clients/python/CHANGELOG.md: 89: MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "v2.7.3"]␊
- test-repos/apache-airflow/clients/python/CHANGELOG.md: 100: MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "v2.7.2"]␊
- test-repos/apache-airflow/clients/python/CHANGELOG.md: 116: MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "v2.7.0"]␊
- test-repos/apache-airflow/clients/python/CHANGELOG.md: 139: MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "v2.6.2"]␊
- test-repos/apache-airflow/clients/python/CHANGELOG.md: 155: MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "v2.6.1"]␊
- test-repos/apache-airflow/clients/python/CHANGELOG.md: 171: MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "v2.6.0"]␊
- test-repos/apache-airflow/clients/python/CHANGELOG.md: 194: MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "v2.5.1"]␊
- test-repos/apache-airflow/clients/python/CHANGELOG.md: 210: MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "v2.5.0"]␊
- test-repos/apache-airflow/clients/python/CHANGELOG.md: 230: MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "v2.3.0"]␊
- test-repos/apache-airflow/clients/python/CHANGELOG.md: 248: MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "v2.2.0"]␊
- test-repos/apache-airflow/clients/python/CHANGELOG.md: 269: MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "v2.1.0"]␊
- test-repos/apache-airflow/clients/python/CHANGELOG.md: 290: MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "v2.0.0"]␊
- test-repos/apache-airflow/clients/python/README.md: 22: MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "Overview"]␊
- test-repos/apache-airflow/clients/python/README.md: 135: MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "Trying the API"]␊
- test-repos/apache-airflow/clients/python/README.md: 175: MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "Authentication"]␊
- test-repos/apache-airflow/clients/python/README.md: 193: MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "Errors"]␊
- test-repos/apache-airflow/clients/python/README.md: 321: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 321: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 322: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 322: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 323: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 323: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 324: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 324: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 325: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 325: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 326: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 326: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 327: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 327: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 328: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 328: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 329: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 329: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 330: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 330: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 331: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 331: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 332: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 332: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 333: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 333: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 334: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 334: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 335: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 335: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 336: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 336: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 337: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 337: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 338: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 338: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 339: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 339: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 340: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 340: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 341: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 341: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 342: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 342: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 343: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 343: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 344: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 344: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 345: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 345: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 346: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 346: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 347: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 347: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 348: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 348: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 349: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 349: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 350: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 350: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 351: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 351: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 352: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 352: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 353: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 353: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 354: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 354: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 355: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 355: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 356: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 356: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 357: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 357: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 358: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 358: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 359: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 359: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 360: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 360: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 361: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 361: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 362: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 362: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 363: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 363: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 364: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 364: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 365: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 365: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 366: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 366: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 367: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 367: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 368: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 368: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 369: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 369: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 370: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 370: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 371: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 371: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 372: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 372: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 373: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 373: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 374: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 374: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 375: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 375: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 376: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 376: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 377: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 377: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 378: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 378: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 379: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 379: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 380: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 380: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 381: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 381: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 382: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 382: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 383: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 383: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 384: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 384: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 385: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 385: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 386: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 386: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 387: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 387: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 388: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 388: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 389: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 389: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 390: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 390: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 391: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 391: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 392: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 392: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 393: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 393: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 394: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 394: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 395: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 395: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 396: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
- test-repos/apache-airflow/clients/python/README.md: 396: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
- test-repos/apache-airflow/dev/MANUALLY_BUILDING_IMAGES.md: 75: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/apache-airflow/dev/MANUALLY_GENERATING_IMAGE_CACHE_AND_CONSTRAINTS.md: 118: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/apache-airflow/dev/PROJECT_GUIDELINES.md: 42: MD059/descriptive-link-text Link text should be descriptive [Context: "[Link]"]␊
- test-repos/apache-airflow/generated/README.md: 23: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/apache-airflow/providers/amazon/tests/system/amazon/CONTRIBUTING.md: 30: MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "Scope"]␊
- test-repos/apache-airflow/providers/amazon/tests/system/amazon/CONTRIBUTING.md: 38: MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "Tenants"]␊
- test-repos/apache-airflow/providers/amazon/tests/system/amazon/CONTRIBUTING.md: 143: MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "Conventions"]␊
- test-repos/apache-airflow/providers/apache/beam/src/airflow/providers/apache/beam/README.md: 61: MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "Provider classes summary"]␊
- test-repos/apache-airflow/providers/common/sql/src/airflow/providers/common/sql/README_API.md: 61: MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "Verifying other providers to u..."]␊
- test-repos/apache-airflow/providers/common/sql/src/airflow/providers/common/sql/README_API.md: 71: MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "External usage, tracking API c..."]␊
- test-repos/apache-airflow/providers/common/sql/src/airflow/providers/common/sql/README_API.md: 81: MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "Possible future work"]␊
- test-repos/apache-airflow/providers/google/tests/system/google/README.md: 77: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/apache-airflow/scripts/in_container/quarantine_issue_header.md: 29: MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "Status update"]␊
- test-repos/apache-airflow/scripts/in_container/quarantine_issue_header.md: 33: MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "List of Quarantined issues"]`
+ `test-repos/apache-airflow/clients/python/CHANGELOG.md:38 MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "v3.0.0"]␊
+ test-repos/apache-airflow/clients/python/CHANGELOG.md:90 MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "v2.10.0"]␊
+ test-repos/apache-airflow/clients/python/CHANGELOG.md:110 MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "v2.9.1"]␊
+ test-repos/apache-airflow/clients/python/CHANGELOG.md:117 MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "v2.9.0"]␊
+ test-repos/apache-airflow/clients/python/CHANGELOG.md:136 MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "v2.8.0"]␊
+ test-repos/apache-airflow/clients/python/CHANGELOG.md:159 MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "v2.7.3"]␊
+ test-repos/apache-airflow/clients/python/CHANGELOG.md:170 MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "v2.7.2"]␊
+ test-repos/apache-airflow/clients/python/CHANGELOG.md:186 MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "v2.7.0"]␊
+ test-repos/apache-airflow/clients/python/CHANGELOG.md:209 MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "v2.6.2"]␊
+ test-repos/apache-airflow/clients/python/CHANGELOG.md:225 MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "v2.6.1"]␊
+ test-repos/apache-airflow/clients/python/CHANGELOG.md:241 MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "v2.6.0"]␊
+ test-repos/apache-airflow/clients/python/CHANGELOG.md:264 MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "v2.5.1"]␊
+ test-repos/apache-airflow/clients/python/CHANGELOG.md:280 MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "v2.5.0"]␊
+ test-repos/apache-airflow/clients/python/CHANGELOG.md:300 MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "v2.3.0"]␊
+ test-repos/apache-airflow/clients/python/CHANGELOG.md:318 MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "v2.2.0"]␊
+ test-repos/apache-airflow/clients/python/CHANGELOG.md:339 MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "v2.1.0"]␊
+ test-repos/apache-airflow/clients/python/CHANGELOG.md:360 MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "v2.0.0"]␊
+ test-repos/apache-airflow/clients/python/README.md:22 MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "Overview"]␊
+ test-repos/apache-airflow/clients/python/README.md:135 MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "Trying the API"]␊
+ test-repos/apache-airflow/clients/python/README.md:176 MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "Authentication"]␊
+ test-repos/apache-airflow/clients/python/README.md:186 MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "Errors"]␊
+ test-repos/apache-airflow/clients/python/README.md:350:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:350:43 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:351:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:351:60 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:352:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:352:128 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:353:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:353:171 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:354:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:354:194 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:355:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:355:186 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:356:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:356:104 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:357:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:357:136 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:358:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:358:125 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:359:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:359:121 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:360:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:360:159 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:361:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:361:96 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:362:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:362:182 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:363:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:363:174 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:364:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:364:141 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:365:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:365:141 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:366:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:366:121 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:367:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:367:153 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:368:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:368:125 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:369:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:369:117 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:370:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:370:137 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:371:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:371:145 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:372:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:372:98 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:373:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:373:150 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:374:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:374:131 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:375:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:375:169 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:376:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:376:151 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:377:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:377:139 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:378:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:378:126 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:379:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:379:147 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:380:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:380:127 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:381:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:381:132 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:382:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:382:102 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:383:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:383:90 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:384:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:384:122 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:385:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:385:99 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:386:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:386:84 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:387:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:387:98 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:388:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:388:92 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:389:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:389:143 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:390:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:390:123 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:391:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:391:142 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:392:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:392:141 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:393:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:393:129 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:394:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:394:119 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:395:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:395:158 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:396:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:396:191 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:397:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:397:238 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:398:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:398:137 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:399:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:399:129 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:400:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:400:129 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:401:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:401:113 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:402:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:402:157 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:403:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:403:143 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:404:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:404:132 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:405:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:405:129 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:406:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:406:117 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:407:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:407:179 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:408:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:408:150 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:409:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:409:135 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:410:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:410:84 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:411:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:411:85 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:412:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:412:89 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:413:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:413:108 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:414:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:414:102 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:415:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:415:95 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:416:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:416:111 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:417:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:417:99 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:418:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:418:90 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:419:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:419:107 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:420:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:420:91 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:421:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:421:114 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:422:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:422:111 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:423:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:423:104 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:424:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:424:183 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:425:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:425:171 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:426:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:426:216 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:427:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:427:240 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:428:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:428:276 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:429:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:429:218 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:430:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:430:183 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:431:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:431:235 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:432:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:432:273 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:433:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:433:207 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:434:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:434:243 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:435:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:435:176 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:436:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:436:200 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:437:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:437:191 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:438:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:438:229 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:439:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:439:223 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:440:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:440:261 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:441:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:441:182 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:442:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:442:119 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:443:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:443:138 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:444:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:444:126 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:445:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:445:114 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:446:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:446:134 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:447:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:447:115 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:448:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:448:104 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:449:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:449:180 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:450:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:450:176 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:451:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:451:181 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:452:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
+ test-repos/apache-airflow/clients/python/README.md:452:192 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
+ test-repos/apache-airflow/dev/MANUALLY_BUILDING_IMAGES.md:76:32 MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
+ test-repos/apache-airflow/dev/MANUALLY_GENERATING_IMAGE_CACHE_AND_CONSTRAINTS.md:114:32 MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
+ test-repos/apache-airflow/dev/PROJECT_GUIDELINES.md:42:3 MD059/descriptive-link-text Link text should be descriptive [Context: "[Link]"]␊
+ test-repos/apache-airflow/generated/README.md:23:43 MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
+ test-repos/apache-airflow/providers/amazon/tests/system/amazon/CONTRIBUTING.md:30 MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "Scope"]␊
+ test-repos/apache-airflow/providers/amazon/tests/system/amazon/CONTRIBUTING.md:38 MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "Tenants"]␊
+ test-repos/apache-airflow/providers/amazon/tests/system/amazon/CONTRIBUTING.md:143 MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "Conventions"]␊
+ test-repos/apache-airflow/providers/apache/beam/src/airflow/providers/apache/beam/README.md:61 MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "Provider classes summary"]␊
+ test-repos/apache-airflow/providers/common/sql/src/airflow/providers/common/sql/README_API.md:61 MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "Verifying other providers to u..."]␊
+ test-repos/apache-airflow/providers/common/sql/src/airflow/providers/common/sql/README_API.md:71 MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "External usage, tracking API c..."]␊
+ test-repos/apache-airflow/providers/common/sql/src/airflow/providers/common/sql/README_API.md:81 MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "Possible future work"]␊
+ test-repos/apache-airflow/providers/google/tests/system/google/README.md:77:4 MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
+ test-repos/apache-airflow/scripts/in_container/quarantine_issue_header.md:29 MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "Status update"]␊
+ test-repos/apache-airflow/scripts/in_container/quarantine_issue_header.md:33 MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "List of Quarantined issues"]`
## https://github.com/electron/electron
> Expected linting violations
- `test-repos/electron-electron/CONTRIBUTING.md: 15: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/electron-electron/docs/api/app.md: 687: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/electron-electron/docs/api/app.md: 689: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/electron-electron/docs/api/session.md: 838: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/electron-electron/docs/api/structures/printer-info.md: 8: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/electron-electron/docs/api/structures/printer-info.md: 8: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/electron-electron/docs/api/structures/web-preferences.md: 19: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/electron-electron/docs/api/structures/web-preferences.md: 24: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/electron-electron/docs/api/web-contents.md: 132: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/electron-electron/docs/breaking-changes.md: 1227: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/electron-electron/docs/breaking-changes.md: 1785: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/electron-electron/docs/breaking-changes.md: 1806: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/electron-electron/docs/breaking-changes.md: 1910: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/electron-electron/docs/breaking-changes.md: 2058: MD059/descriptive-link-text Link text should be descriptive [Context: "[link]"]␊
- test-repos/electron-electron/docs/development/build-instructions-macos.md: 30: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/electron-electron/docs/development/build-instructions-macos.md: 58: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/electron-electron/docs/development/build-instructions-macos.md: 58: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/electron-electron/docs/development/build-instructions-macos.md: 58: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/electron-electron/docs/development/creating-api.md: 47: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/electron-electron/docs/development/creating-api.md: 161: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/electron-electron/docs/development/pull-requests.md: 183: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/electron-electron/docs/tutorial/electron-timelines.md: 91: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/electron-electron/docs/tutorial/fuses.md: 141: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/electron-electron/docs/tutorial/launch-app-from-url-in-another-app.md: 66: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/electron-electron/docs/tutorial/mac-app-store-submission-guide.md: 63: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/electron-electron/docs/tutorial/offscreen-rendering.md: 40: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/electron-electron/docs/tutorial/snapcraft.md: 24: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/electron-electron/docs/tutorial/tray.md: 67: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/electron-electron/docs/tutorial/windows-store-guide.md: 104: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/electron-electron/docs/tutorial/windows-store-guide.md: 107: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/electron-electron/docs/tutorial/windows-store-guide.md: 137: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]`
+ `test-repos/electron-electron/docs/api/structures/notification-action.md:10:163 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/electron-electron/docs/api/structures/notification-action.md:10:431 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/electron-electron/docs/breaking-changes.md:2337:1 MD060/table-column-style Table column style [Table pipe is missing space to the right for style "compact"]␊
+ test-repos/electron-electron/docs/breaking-changes.md:2337:12 MD060/table-column-style Table column style [Table pipe is missing space to the left for style "compact"]␊
+ test-repos/electron-electron/docs/breaking-changes.md:2337:12 MD060/table-column-style Table column style [Table pipe is missing space to the right for style "compact"]␊
+ test-repos/electron-electron/docs/breaking-changes.md:2337:33 MD060/table-column-style Table column style [Table pipe is missing space to the left for style "compact"]␊
+ test-repos/electron-electron/docs/breaking-changes.md:2337:33 MD060/table-column-style Table column style [Table pipe is missing space to the right for style "compact"]␊
+ test-repos/electron-electron/docs/breaking-changes.md:2337:47 MD060/table-column-style Table column style [Table pipe is missing space to the left for style "compact"]␊
+ test-repos/electron-electron/docs/tutorial/electron-timelines.md:12:10 MD060/table-column-style Table column style [Table pipe has extra space to the right for style "compact"]␊
+ test-repos/electron-electron/docs/tutorial/electron-timelines.md:13:10 MD060/table-column-style Table column style [Table pipe has extra space to the right for style "compact"]␊
+ test-repos/electron-electron/docs/tutorial/electron-timelines.md:14:10 MD060/table-column-style Table column style [Table pipe has extra space to the right for style "compact"]␊
+ test-repos/electron-electron/docs/tutorial/electron-timelines.md:15:10 MD060/table-column-style Table column style [Table pipe has extra space to the right for style "compact"]␊
+ test-repos/electron-electron/docs/tutorial/electron-timelines.md:16:10 MD060/table-column-style Table column style [Table pipe has extra space to the right for style "compact"]␊
+ test-repos/electron-electron/docs/tutorial/electron-timelines.md:17:10 MD060/table-column-style Table column style [Table pipe has extra space to the right for style "compact"]␊
+ test-repos/electron-electron/docs/tutorial/electron-timelines.md:18:10 MD060/table-column-style Table column style [Table pipe has extra space to the right for style "compact"]␊
+ test-repos/electron-electron/docs/tutorial/electron-timelines.md:19:10 MD060/table-column-style Table column style [Table pipe has extra space to the right for style "compact"]␊
+ test-repos/electron-electron/docs/tutorial/electron-timelines.md:20:10 MD060/table-column-style Table column style [Table pipe has extra space to the right for style "compact"]␊
+ test-repos/electron-electron/docs/tutorial/electron-timelines.md:21:10 MD060/table-column-style Table column style [Table pipe has extra space to the right for style "compact"]␊
+ test-repos/electron-electron/docs/tutorial/electron-timelines.md:22:10 MD060/table-column-style Table column style [Table pipe has extra space to the right for style "compact"]␊
+ test-repos/electron-electron/docs/tutorial/electron-timelines.md:23:10 MD060/table-column-style Table column style [Table pipe has extra space to the right for style "compact"]␊
+ test-repos/electron-electron/docs/tutorial/electron-timelines.md:24:10 MD060/table-column-style Table column style [Table pipe has extra space to the right for style "compact"]␊
+ test-repos/electron-electron/docs/tutorial/esm.md:32:208 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/electron-electron/docs/tutorial/esm.md:33:182 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/electron-electron/docs/tutorial/esm.md:34:45 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/electron-electron/docs/tutorial/esm.md:34:56 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/electron-electron/docs/tutorial/esm.md:34:66 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/electron-electron/docs/tutorial/esm.md:34:368 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/electron-electron/docs/tutorial/esm.md:35:49 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/electron-electron/docs/tutorial/esm.md:35:60 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/electron-electron/docs/tutorial/esm.md:35:70 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/electron-electron/docs/tutorial/esm.md:35:540 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/electron-electron/docs/tutorial/examples.md:30:27 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/electron-electron/docs/tutorial/examples.md:30:145 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/electron-electron/docs/tutorial/examples.md:31:27 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/electron-electron/docs/tutorial/examples.md:31:145 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/electron-electron/docs/tutorial/examples.md:32:27 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/electron-electron/docs/tutorial/examples.md:32:145 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/electron-electron/docs/tutorial/examples.md:33:27 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/electron-electron/docs/tutorial/examples.md:33:145 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/electron-electron/docs/tutorial/examples.md:34:27 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/electron-electron/docs/tutorial/examples.md:34:145 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/electron-electron/docs/tutorial/examples.md:35:27 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/electron-electron/docs/tutorial/examples.md:35:145 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/electron-electron/docs/tutorial/examples.md:36:27 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/electron-electron/docs/tutorial/examples.md:36:145 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/electron-electron/docs/tutorial/menus.md:203:32 MD052/reference-links-images Reference links and images should use a label that is defined [Missing link or image reference definition: "sharemenu"] [Context: "[share menu][ShareMenu]"]`
## https://github.com/eslint/eslint
> Expected linting violations
- `test-repos/eslint-eslint/docs/src/extend/custom-rule-tutorial.md: 500: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/eslint-eslint/docs/src/extend/custom-rules.md: 141: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/eslint-eslint/docs/src/extend/custom-rules.md: 148: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/eslint-eslint/docs/src/integrate/integration-tutorial.md: 278: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]`
+ `test-repos/eslint-eslint/docs/src/extend/custom-rule-tutorial.md:502:58 MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
+ test-repos/eslint-eslint/docs/src/extend/custom-rules.md:141:65 MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
+ test-repos/eslint-eslint/docs/src/extend/custom-rules.md:148:148 MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
+ test-repos/eslint-eslint/docs/src/integrate/integration-tutorial.md:278:2 MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]`
## https://github.com/mkdocs/mkdocs
@@ -249,286 +320,526 @@ Generated by [AVA](https://avajs.dev).
> Expected linting violations
- `test-repos/mochajs-mocha/.github/CODE_OF_CONDUCT.md: 63: MD034/no-bare-urls Bare URL used [Context: "report@lists.openjsf.org"]␊
- test-repos/mochajs-mocha/.github/CONTRIBUTING.md: 42: MD051/link-fragments Link fragments should be valid [Context: "[⚽️ About Project Goals](#⚽️-about-project-goals)"]␊
- test-repos/mochajs-mocha/PROJECT_CHARTER.md: 51: MD051/link-fragments Link fragments should be valid [Context: "[§2: Scope](#%c2%a72-scope)"]␊
- test-repos/mochajs-mocha/PROJECT_CHARTER.md: 56: MD051/link-fragments Link fragments should be valid [Context: "[§2: Scope](#%c2%a72-scope)"]␊
- test-repos/mochajs-mocha/README.md: 39: MD045/no-alt-text Images should have alternate text (alt text)␊
- test-repos/mochajs-mocha/docs/changelogs/CHANGELOG_V3_older.md: 207: MD059/descriptive-link-text Link text should be descriptive [Context: "[more]"]␊
- test-repos/mochajs-mocha/docs/index.md: 32: MD051/link-fragments Link fragments should be valid [Context: "[global variable leak detection](#-check-leaks)"]␊
- test-repos/mochajs-mocha/docs/index.md: 33: MD051/link-fragments Link fragments should be valid [Context: "[optionally run tests that match a regexp](#-grep-regexp-g-regexp)"]␊
- test-repos/mochajs-mocha/docs/index.md: 34: MD051/link-fragments Link fragments should be valid [Context: "[auto-exit to prevent "hanging" with an active loop](#-exit)"]␊
- test-repos/mochajs-mocha/docs/index.md: 36: MD051/link-fragments Link fragments should be valid [Context: "[config file support](#-config-path)"]␊
- test-repos/mochajs-mocha/docs/index.md: 37: MD051/link-fragments Link fragments should be valid [Context: "[node debugger support](#-inspect-inspect-brk-inspect)"]␊
- test-repos/mochajs-mocha/docs/index.md: 39: MD051/link-fragments Link fragments should be valid [Context: "[source-map support](#-enable-source-maps)"]␊
- test-repos/mochajs-mocha/docs/index.md: 45: MD051/link-fragments Link fragments should be valid [Context: "[arbitrary transpiler support (coffee-script etc)](#-compilers)"]␊
- test-repos/mochajs-mocha/docs/index.md: 1248: MD051/link-fragments Link fragments should be valid [Context: "[\`--parallel\`](#-parallel-p)"]␊
- test-repos/mochajs-mocha/docs/index.md: 1266: MD051/link-fragments Link fragments should be valid [Context: "[\`--node-option\`](#-node-option-name-n-name)"]␊
- test-repos/mochajs-mocha/docs/index.md: 1287: MD051/link-fragments Link fragments should be valid [Context: "[\`--node-option\`](#-node-option-name-n-name)"]␊
- test-repos/mochajs-mocha/docs/index.md: 1293: MD051/link-fragments Link fragments should be valid [Context: "[\`--parallel\`](#-parallel-p)"]␊
- test-repos/mochajs-mocha/docs/index.md: 1318: MD051/link-fragments Link fragments should be valid [Context: "[\`--grep\`](#-grep-regexp-g-regexp)"]␊
- test-repos/mochajs-mocha/docs/index.md: 1318: MD051/link-fragments Link fragments should be valid [Context: "[\`--fgrep\`](#-fgrep-string-f-string)"]␊
- test-repos/mochajs-mocha/docs/index.md: 1329: MD051/link-fragments Link fragments should be valid [Context: "[\`--file\`](#-file-file)"]␊
- test-repos/mochajs-mocha/docs/index.md: 1330: MD051/link-fragments Link fragments should be valid [Context: "[\`--sort\`](#-sort-s)"]␊
- test-repos/mochajs-mocha/docs/index.md: 1336: MD051/link-fragments Link fragments should be valid [Context: "[globally](#-timeout-ms-t-ms)"]␊
- test-repos/mochajs-mocha/docs/index.md: 1397: MD051/link-fragments Link fragments should be valid [Context: "[\`--parallel\`](#-parallel-p)"]␊
- test-repos/mochajs-mocha/docs/index.md: 1404: MD051/link-fragments Link fragments should be valid [Context: "[\`--timeout\`](#-timeout-ms-t-ms)"]␊
- test-repos/mochajs-mocha/docs/index.md: 1414: MD051/link-fragments Link fragments should be valid [Context: "[job count](#-jobs-count-j-count)"]␊
- test-repos/mochajs-mocha/docs/index.md: 1428: MD051/link-fragments Link fragments should be valid [Context: "[\`--require\`](#-require-module-r-module)"]␊
- test-repos/mochajs-mocha/docs/index.md: 1638: MD051/link-fragments Link fragments should be valid [Context: "[\`--parallel\`](#-parallel-p)"]␊
- test-repos/mochajs-mocha/docs/index.md: 2118: MD051/link-fragments Link fragments should be valid [Context: "[Watch mode](#-watch-w)"]␊
- test-repos/mochajs-mocha/docs/index.md: 2405: MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "caniuse-notifications"] [Context: "[caniuse-notifications]: https..."]␊
- test-repos/mochajs-mocha/docs/index.md: 2406: MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "caniuse-promises"] [Context: "[caniuse-promises]: https://ca..."]␊
- test-repos/mochajs-mocha/docs/index.md: 2437: MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "mocha-website"] [Context: "[mocha-website]: https://mocha..."]␊
- test-repos/mochajs-mocha/docs/index.md: 2206: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/mochajs-mocha/docs/index.md: 2276: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]`
+ `test-repos/mochajs-mocha/.github/CODE_OF_CONDUCT.md:63:59 MD034/no-bare-urls Bare URL used [Context: "report@lists.openjsf.org"]␊
+ test-repos/mochajs-mocha/.github/CONTRIBUTING.md:42:110 MD051/link-fragments Link fragments should be valid [Context: "[⚽️ About Project Goals](#⚽️-about-project-goals)"]␊
+ test-repos/mochajs-mocha/docs/changelogs/CHANGELOG_V3_older.md:207:127 MD059/descriptive-link-text Link text should be descriptive [Context: "[more]"]␊
+ test-repos/mochajs-mocha/docs/index.md:34:3 MD051/link-fragments Link fragments should be valid [Context: "[global variable leak detection](#-check-leaks)"]␊
+ test-repos/mochajs-mocha/docs/index.md:35:3 MD051/link-fragments Link fragments should be valid [Context: "[optionally run tests that match a regexp](#-grep-regexp-g-regexp)"]␊
+ test-repos/mochajs-mocha/docs/index.md:36:3 MD051/link-fragments Link fragments should be valid [Context: "[auto-exit to prevent "hanging" with an active loop](#-exit)"]␊
+ test-repos/mochajs-mocha/docs/index.md:38:3 MD051/link-fragments Link fragments should be valid [Context: "[config file support](#-config-path)"]␊
+ test-repos/mochajs-mocha/docs/index.md:39:3 MD051/link-fragments Link fragments should be valid [Context: "[node debugger support](#-inspect-inspect-brk-inspect)"]␊
+ test-repos/mochajs-mocha/docs/index.md:41:3 MD051/link-fragments Link fragments should be valid [Context: "[source-map support](#-enable-source-maps)"]␊
+ test-repos/mochajs-mocha/docs/index.md:47:3 MD051/link-fragments Link fragments should be valid [Context: "[arbitrary transpiler support (coffee-script etc)](#-compilers)"]␊
+ test-repos/mochajs-mocha/docs/index.md:1262:32 MD051/link-fragments Link fragments should be valid [Context: "[\`--parallel\`](#-parallel-p)"]␊
+ test-repos/mochajs-mocha/docs/index.md:1280:66 MD051/link-fragments Link fragments should be valid [Context: "[\`--node-option\`](#-node-option-name-n-name)"]␊
+ test-repos/mochajs-mocha/docs/index.md:1301:80 MD051/link-fragments Link fragments should be valid [Context: "[\`--node-option\`](#-node-option-name-n-name)"]␊
+ test-repos/mochajs-mocha/docs/index.md:1307:140 MD051/link-fragments Link fragments should be valid [Context: "[\`--parallel\`](#-parallel-p)"]␊
+ test-repos/mochajs-mocha/docs/index.md:1332:8 MD051/link-fragments Link fragments should be valid [Context: "[\`--grep\`](#-grep-regexp-g-regexp)"]␊
+ test-repos/mochajs-mocha/docs/index.md:1332:46 MD051/link-fragments Link fragments should be valid [Context: "[\`--fgrep\`](#-fgrep-string-f-string)"]␊
+ test-repos/mochajs-mocha/docs/index.md:1343:3 MD051/link-fragments Link fragments should be valid [Context: "[\`--file\`](#-file-file)"]␊
+ test-repos/mochajs-mocha/docs/index.md:1344:3 MD051/link-fragments Link fragments should be valid [Context: "[\`--sort\`](#-sort-s)"]␊
+ test-repos/mochajs-mocha/docs/index.md:1350:253 MD051/link-fragments Link fragments should be valid [Context: "[globally](#-timeout-ms-t-ms)"]␊
+ test-repos/mochajs-mocha/docs/index.md:1411:58 MD051/link-fragments Link fragments should be valid [Context: "[\`--parallel\`](#-parallel-p)"]␊
+ test-repos/mochajs-mocha/docs/index.md:1418:115 MD051/link-fragments Link fragments should be valid [Context: "[\`--timeout\`](#-timeout-ms-t-ms)"]␊
+ test-repos/mochajs-mocha/docs/index.md:1428:69 MD051/link-fragments Link fragments should be valid [Context: "[job count](#-jobs-count-j-count)"]␊
+ test-repos/mochajs-mocha/docs/index.md:1442:54 MD051/link-fragments Link fragments should be valid [Context: "[\`--require\`](#-require-module-r-module)"]␊
+ test-repos/mochajs-mocha/docs/index.md:1652:112 MD051/link-fragments Link fragments should be valid [Context: "[\`--parallel\`](#-parallel-p)"]␊
+ test-repos/mochajs-mocha/docs/index.md:2132:3 MD051/link-fragments Link fragments should be valid [Context: "[Watch mode](#-watch-w)"]␊
+ test-repos/mochajs-mocha/docs/index.md:2431:1 MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "caniuse-notifications"] [Context: "[caniuse-notifications]: https..."]␊
+ test-repos/mochajs-mocha/docs/index.md:2432:1 MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "caniuse-promises"] [Context: "[caniuse-promises]: https://ca..."]␊
+ test-repos/mochajs-mocha/docs/index.md:2463:1 MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "mocha-website"] [Context: "[mocha-website]: https://mocha..."]␊
+ test-repos/mochajs-mocha/docs/index.md:2230:124 MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
+ test-repos/mochajs-mocha/docs/index.md:2302:81 MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
+ test-repos/mochajs-mocha/PROJECT_CHARTER.md:51:153 MD051/link-fragments Link fragments should be valid [Context: "[§2: Scope](#%c2%a72-scope)"]␊
+ test-repos/mochajs-mocha/PROJECT_CHARTER.md:56:93 MD051/link-fragments Link fragments should be valid [Context: "[§2: Scope](#%c2%a72-scope)"]␊
+ test-repos/mochajs-mocha/README.md:39:46 MD045/no-alt-text Images should have alternate text (alt text)`
## https://github.com/pi-hole/docs
> Expected linting violations
- `test-repos/pi-hole-docs/docs/ftldns/compile.md: 56: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/pi-hole-docs/docs/guides/dns/upstream-dns-providers.md: 140: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/pi-hole-docs/docs/guides/vpn/openvpn/clients.md: 38: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/pi-hole-docs/docs/guides/vpn/openvpn/dual-operation.md: 5: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/pi-hole-docs/docs/guides/vpn/openvpn/firewall.md: 61: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/pi-hole-docs/docs/main/prerequisites.md: 15: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]`
+ `test-repos/pi-hole-docs/docs/api/tls.md:28:66 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/api/tls.md:49:64 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/api/tls.md:69:74 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/api/tls.md:70:73 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/docker/upgrading/v5-v6.md:12:1 MD060/table-column-style Table column style [Table pipe has space to the right for style "tight"]␊
+ test-repos/pi-hole-docs/docs/docker/upgrading/v5-v6.md:12:16 MD060/table-column-style Table column style [Table pipe has space to the left for style "tight"]␊
+ test-repos/pi-hole-docs/docs/docker/upgrading/v5-v6.md:12:16 MD060/table-column-style Table column style [Table pipe has space to the right for style "tight"]␊
+ test-repos/pi-hole-docs/docs/docker/upgrading/v5-v6.md:12:31 MD060/table-column-style Table column style [Table pipe has space to the left for style "tight"]␊
+ test-repos/pi-hole-docs/docs/docker/upgrading/v5-v6.md:31:15 MD060/table-column-style Table column style [Table pipe has space to the right for style "tight"]␊
+ test-repos/pi-hole-docs/docs/docker/upgrading/v5-v6.md:32:14 MD060/table-column-style Table column style [Table pipe has space to the right for style "tight"]␊
+ test-repos/pi-hole-docs/docs/docker/upgrading/v5-v6.md:33:12 MD060/table-column-style Table column style [Table pipe has space to the right for style "tight"]␊
+ test-repos/pi-hole-docs/docs/docker/upgrading/v5-v6.md:34:15 MD060/table-column-style Table column style [Table pipe has space to the right for style "tight"]␊
+ test-repos/pi-hole-docs/docs/docker/upgrading/v5-v6.md:35:18 MD060/table-column-style Table column style [Table pipe has space to the right for style "tight"]␊
+ test-repos/pi-hole-docs/docs/docker/upgrading/v5-v6.md:36:17 MD060/table-column-style Table column style [Table pipe has space to the right for style "tight"]␊
+ test-repos/pi-hole-docs/docs/docker/upgrading/v5-v6.md:37:13 MD060/table-column-style Table column style [Table pipe has space to the right for style "tight"]␊
+ test-repos/pi-hole-docs/docs/docker/upgrading/v5-v6.md:38:21 MD060/table-column-style Table column style [Table pipe has space to the right for style "tight"]␊
+ test-repos/pi-hole-docs/docs/ftldns/cache_dump.md:119:11 MD060/table-column-style Table column style [Table pipe is missing space to the left for style "compact"]␊
+ test-repos/pi-hole-docs/docs/ftldns/cache_dump.md:119:11 MD060/table-column-style Table column style [Table pipe is missing space to the right for style "compact"]␊
+ test-repos/pi-hole-docs/docs/ftldns/cache_dump.md:131:8 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/group_management/example.md:66:23 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/group_management/example.md:66:32 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/group_management/example.md:67:29 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/group_management/example.md:67:47 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/group_management/example.md:68:29 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/group_management/example.md:68:47 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/group_management/example.md:69:39 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/group_management/example.md:69:57 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/group_management/example.md:70:39 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/group_management/example.md:70:57 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/group_management/example.md:88:23 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/group_management/example.md:88:32 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/group_management/example.md:89:29 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/group_management/example.md:89:47 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/group_management/example.md:90:29 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/group_management/example.md:90:47 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/group_management/example.md:91:39 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/group_management/example.md:91:57 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/group_management/example.md:92:39 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/group_management/example.md:92:57 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/group_management/example.md:116:23 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/group_management/example.md:116:32 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/group_management/example.md:117:29 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/group_management/example.md:117:46 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/group_management/example.md:118:29 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/group_management/example.md:118:46 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/group_management/example.md:119:39 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/group_management/example.md:119:56 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/group_management/example.md:120:39 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/group_management/example.md:120:56 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/group_management/example.md:139:23 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/group_management/example.md:139:32 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/group_management/example.md:140:29 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/group_management/example.md:140:46 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/group_management/example.md:141:29 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/group_management/example.md:141:46 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/group_management/example.md:142:39 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/group_management/example.md:142:56 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/group_management/example.md:143:39 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/group_management/example.md:143:56 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/group_management/example.md:162:23 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/group_management/example.md:162:32 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/group_management/example.md:163:29 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/group_management/example.md:163:46 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/group_management/example.md:164:29 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/group_management/example.md:164:46 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/group_management/example.md:165:39 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/group_management/example.md:165:56 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/group_management/example.md:166:39 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/group_management/example.md:166:56 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/group_management/example.md:190:23 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/group_management/example.md:190:32 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/group_management/example.md:191:29 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/group_management/example.md:191:47 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/group_management/example.md:192:29 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/group_management/example.md:192:47 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/group_management/example.md:193:39 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/group_management/example.md:193:57 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/group_management/example.md:194:39 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/group_management/example.md:194:57 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/group_management/example.md:212:23 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/group_management/example.md:212:32 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/group_management/example.md:213:29 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/group_management/example.md:213:47 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/group_management/example.md:214:29 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/group_management/example.md:214:47 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/group_management/example.md:215:39 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/group_management/example.md:215:57 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/group_management/example.md:216:39 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/group_management/example.md:216:57 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/group_management/example.md:235:23 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/group_management/example.md:235:32 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/group_management/example.md:236:29 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/group_management/example.md:236:47 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/group_management/example.md:237:29 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/group_management/example.md:237:47 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/group_management/example.md:238:39 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/group_management/example.md:238:57 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/group_management/example.md:239:39 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/group_management/example.md:239:57 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/guides/misc/allowlist-denylist.md:14:96 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/main/coverage.md:7 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊
+ test-repos/pi-hole-docs/docs/main/pihole-command.md:4:1 MD060/table-column-style Table column style [Table pipe has extra space to the right for style "compact"]␊
+ test-repos/pi-hole-docs/docs/main/pihole-command.md:11:25 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊
+ test-repos/pi-hole-docs/docs/main/pihole-command.md:34:19 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊
+ test-repos/pi-hole-docs/docs/main/pihole-command.md:36:19 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊
+ test-repos/pi-hole-docs/docs/main/pihole-command.md:42:1 MD060/table-column-style Table column style [Table pipe has extra space to the right for style "compact"]␊
+ test-repos/pi-hole-docs/docs/main/pihole-command.md:42:4 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊
+ test-repos/pi-hole-docs/docs/main/pihole-command.md:43:1 MD060/table-column-style Table column style [Table pipe has extra space to the right for style "compact"]␊
+ test-repos/pi-hole-docs/docs/main/pihole-command.md:44:19 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊
+ test-repos/pi-hole-docs/docs/main/pihole-command.md:46:19 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊
+ test-repos/pi-hole-docs/docs/main/pihole-command.md:61:1 MD060/table-column-style Table column style [Table pipe has extra space to the right for style "compact"]␊
+ test-repos/pi-hole-docs/docs/main/pihole-command.md:62:19 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊
+ test-repos/pi-hole-docs/docs/main/pihole-command.md:64:19 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊
+ test-repos/pi-hole-docs/docs/main/pihole-command.md:72:19 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊
+ test-repos/pi-hole-docs/docs/main/pihole-command.md:74:19 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊
+ test-repos/pi-hole-docs/docs/main/pihole-command.md:82:19 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊
+ test-repos/pi-hole-docs/docs/main/pihole-command.md:84:19 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊
+ test-repos/pi-hole-docs/docs/main/pihole-command.md:96:19 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊
+ test-repos/pi-hole-docs/docs/main/pihole-command.md:98:19 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊
+ test-repos/pi-hole-docs/docs/main/pihole-command.md:126:19 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊
+ test-repos/pi-hole-docs/docs/main/pihole-command.md:128:19 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊
+ test-repos/pi-hole-docs/docs/main/pihole-command.md:136:19 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊
+ test-repos/pi-hole-docs/docs/main/pihole-command.md:138:19 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊
+ test-repos/pi-hole-docs/docs/main/pihole-command.md:152:19 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊
+ test-repos/pi-hole-docs/docs/main/pihole-command.md:154:19 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊
+ test-repos/pi-hole-docs/docs/main/pihole-command.md:168:19 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊
+ test-repos/pi-hole-docs/docs/main/pihole-command.md:170:19 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊
+ test-repos/pi-hole-docs/docs/main/pihole-command.md:178:19 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊
+ test-repos/pi-hole-docs/docs/main/pihole-command.md:180:19 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊
+ test-repos/pi-hole-docs/docs/main/pihole-command.md:188:19 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊
+ test-repos/pi-hole-docs/docs/main/pihole-command.md:190:19 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊
+ test-repos/pi-hole-docs/docs/main/pihole-command.md:198:19 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊
+ test-repos/pi-hole-docs/docs/main/pihole-command.md:200:19 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊
+ test-repos/pi-hole-docs/docs/main/pihole-command.md:208:19 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊
+ test-repos/pi-hole-docs/docs/main/pihole-command.md:210:19 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊
+ test-repos/pi-hole-docs/docs/main/pihole-command.md:220:19 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊
+ test-repos/pi-hole-docs/docs/main/pihole-command.md:222:19 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊
+ test-repos/pi-hole-docs/docs/main/pihole-command.md:230:19 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊
+ test-repos/pi-hole-docs/docs/main/pihole-command.md:232:19 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊
+ test-repos/pi-hole-docs/docs/main/pihole-command.md:240:19 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊
+ test-repos/pi-hole-docs/docs/main/pihole-command.md:242:19 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊
+ test-repos/pi-hole-docs/docs/main/prerequisites.md:7 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊
+ test-repos/pi-hole-docs/docs/main/prerequisites.md:54:192 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/main/prerequisites.md:55:122 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/main/prerequisites.md:56:122 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/main/prerequisites.md:57:57 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/main/prerequisites.md:57:68 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/main/prerequisites.md:57:370 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/main/prerequisites.md:58:123 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/pi-hole-docs/docs/regex/tutorial.md:84:7 MD060/table-column-style Table column style [Table pipe is missing space to the left for style "compact"]␊
+ test-repos/pi-hole-docs/docs/regex/tutorial.md:84:7 MD060/table-column-style Table column style [Table pipe is missing space to the right for style "compact"]␊
+ test-repos/pi-hole-docs/docs/regex/tutorial.md:85:10 MD060/table-column-style Table column style [Table pipe is missing space to the left for style "compact"]␊
+ test-repos/pi-hole-docs/docs/regex/tutorial.md:85:10 MD060/table-column-style Table column style [Table pipe is missing space to the right for style "compact"]␊
+ test-repos/pi-hole-docs/docs/regex/tutorial.md:86:10 MD060/table-column-style Table column style [Table pipe is missing space to the left for style "compact"]␊
+ test-repos/pi-hole-docs/docs/regex/tutorial.md:86:10 MD060/table-column-style Table column style [Table pipe is missing space to the right for style "compact"]␊
+ test-repos/pi-hole-docs/docs/regex/tutorial.md:137:6 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊
+ test-repos/pi-hole-docs/docs/regex/tutorial.md:142:50 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊
+ test-repos/pi-hole-docs/docs/regex/tutorial.md:143:67 MD060/table-column-style Table column style [Table pipe is missing space to the left for style "compact"]␊
+ test-repos/pi-hole-docs/docs/regex/tutorial.md:143:67 MD060/table-column-style Table column style [Table pipe is missing space to the right for style "compact"]␊
+ test-repos/pi-hole-docs/docs/regex/tutorial.md:144:2 MD060/table-column-style Table column style [Table pipe is missing space to the left for style "compact"]␊
+ test-repos/pi-hole-docs/docs/regex/tutorial.md:144:2 MD060/table-column-style Table column style [Table pipe is missing space to the right for style "compact"]␊
+ test-repos/pi-hole-docs/docs/regex/tutorial.md:144:26 MD060/table-column-style Table column style [Table pipe is missing space to the left for style "compact"]␊
+ test-repos/pi-hole-docs/docs/regex/tutorial.md:144:26 MD060/table-column-style Table column style [Table pipe is missing space to the right for style "compact"]␊
+ test-repos/pi-hole-docs/docs/regex/tutorial.md:145:40 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊
+ test-repos/pi-hole-docs/docs/regex/tutorial.md:146:6 MD060/table-column-style Table column style [Table pipe is missing space to the left for style "compact"]␊
+ test-repos/pi-hole-docs/docs/regex/tutorial.md:147:68 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]`
## https://github.com/v8/v8.dev
> Expected linting violations
- `test-repos/v8-v8-dev/src/blog/adaptor-frame.md: 75: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/v8-v8-dev/src/blog/adaptor-frame.md: 77: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/v8-v8-dev/src/blog/adaptor-frame.md: 89: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/v8-v8-dev/src/blog/adaptor-frame.md: 232: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/v8-v8-dev/src/blog/fast-for-in.md: 271: MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| Internal method | Hand..."]␊
- test-repos/v8-v8-dev/src/blog/fast-for-in.md: 277: MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| \`[[OwnPropertyKeys]]\` | \`own..."]␊
- test-repos/v8-v8-dev/src/blog/fast-for-in.md: 351: MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| Position | Name ..."]␊
- test-repos/v8-v8-dev/src/blog/fast-for-in.md: 369: MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| 17 | \`ForInFilter\` ..."]␊
- test-repos/v8-v8-dev/src/blog/high-performance-cpp-gc.md: 29: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/v8-v8-dev/src/blog/jspi-ot.md: 13: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/v8-v8-dev/src/blog/jspi-ot.md: 13: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/v8-v8-dev/src/blog/jspi-ot.md: 23: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/v8-v8-dev/src/blog/jspi-ot.md: 38: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/v8-v8-dev/src/blog/lazy-unlinking.md: 183: MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| Benchmark | Kind ..."]␊
- test-repos/v8-v8-dev/src/blog/lazy-unlinking.md: 188: MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| youtube.com | Average size ..."]␊
- test-repos/v8-v8-dev/src/blog/maglev.md: 143: MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| Benchmark | Energy Consump..."]␊
- test-repos/v8-v8-dev/src/blog/maglev.md: 146: MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| Speedometer | -10% ..."]␊
- test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md: 84: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
- test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md: 85: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
- test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md: 86: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
- test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md: 87: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
- test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md: 133: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
- test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md: 134: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
- test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md: 135: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
- test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md: 136: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
- test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md: 137: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
- test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md: 138: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
- test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md: 156: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
- test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md: 157: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
- test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md: 158: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
- test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md: 159: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
- test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md: 160: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
- test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md: 161: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
- test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md: 162: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
- test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md: 163: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
- test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md: 164: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
- test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md: 165: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
- test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md: 166: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
- test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md: 167: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
- test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md: 187: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
- test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md: 188: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
- test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md: 189: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
- test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md: 190: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
- test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md: 191: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
- test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md: 192: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
- test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md: 193: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
- test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md: 194: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
- test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md: 195: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
- test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md: 196: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
- test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md: 197: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
- test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md: 198: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
- test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md: 199: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
- test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md: 200: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
- test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md: 201: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
- test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md: 82: MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| C++ ..."]␊
- test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md: 88: MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| \`\`\` ..."]␊
- test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md: 131: MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| C++ ..."]␊
- test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md: 139: MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| \`\`\` ..."]␊
- test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md: 185: MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| C++ ..."]␊
- test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md: 202: MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| \`\`\` ..."]␊
- test-repos/v8-v8-dev/src/blog/optimizing-v8-memory.md: 35: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/v8-v8-dev/src/blog/pointer-compression.md: 192: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
- test-repos/v8-v8-dev/src/blog/pointer-compression.md: 193: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
- test-repos/v8-v8-dev/src/blog/pointer-compression.md: 194: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
- test-repos/v8-v8-dev/src/blog/pointer-compression.md: 195: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
- test-repos/v8-v8-dev/src/blog/pointer-compression.md: 196: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
- test-repos/v8-v8-dev/src/blog/pointer-compression.md: 197: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
- test-repos/v8-v8-dev/src/blog/pointer-compression.md: 198: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
- test-repos/v8-v8-dev/src/blog/pointer-compression.md: 215: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
- test-repos/v8-v8-dev/src/blog/pointer-compression.md: 216: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
- test-repos/v8-v8-dev/src/blog/pointer-compression.md: 217: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
- test-repos/v8-v8-dev/src/blog/pointer-compression.md: 218: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
- test-repos/v8-v8-dev/src/blog/pointer-compression.md: 219: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
- test-repos/v8-v8-dev/src/blog/pointer-compression.md: 220: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
- test-repos/v8-v8-dev/src/blog/pointer-compression.md: 330: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
- test-repos/v8-v8-dev/src/blog/pointer-compression.md: 331: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
- test-repos/v8-v8-dev/src/blog/pointer-compression.md: 332: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
- test-repos/v8-v8-dev/src/blog/pointer-compression.md: 333: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
- test-repos/v8-v8-dev/src/blog/pointer-compression.md: 334: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
- test-repos/v8-v8-dev/src/blog/pointer-compression.md: 335: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
- test-repos/v8-v8-dev/src/blog/pointer-compression.md: 198: MD056/table-column-count Table column count [Expected: 3; Actual: 4; Too many cells, extra data will be missing]␊
- test-repos/v8-v8-dev/src/blog/pointer-compression.md: 333: MD056/table-column-count Table column count [Expected: 3; Actual: 4; Too many cells, extra data will be missing]␊
- test-repos/v8-v8-dev/src/blog/pointer-compression.md: 334: MD056/table-column-count Table column count [Expected: 3; Actual: 4; Too many cells, extra data will be missing]␊
- test-repos/v8-v8-dev/src/blog/pointer-compression.md: 335: MD056/table-column-count Table column count [Expected: 3; Actual: 4; Too many cells, extra data will be missing]␊
- test-repos/v8-v8-dev/src/blog/react-cliff.md: 81: MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| representation ..."]␊
- test-repos/v8-v8-dev/src/blog/react-cliff.md: 87: MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| 64-bit IEEE-754 floating-poi..."]␊
- test-repos/v8-v8-dev/src/blog/understanding-ecmascript-part-1.md: 41: MD032/blanks-around-lists Lists should be surrounded by blank lines [Context: "> 3. Return \`? HasOwnProperty(..."]␊
- test-repos/v8-v8-dev/src/blog/understanding-ecmascript-part-1.md: 55: MD032/blanks-around-lists Lists should be surrounded by blank lines [Context: "> 5. Return \`true\`."]␊
- test-repos/v8-v8-dev/src/blog/understanding-ecmascript-part-1.md: 91: MD032/blanks-around-lists Lists should be surrounded by blank lines [Context: "> 1. Return \`! OrdinaryGetOwnP..."]␊
- test-repos/v8-v8-dev/src/blog/understanding-ecmascript-part-1.md: 177: MD032/blanks-around-lists Lists should be surrounded by blank lines [Context: "> 10. Return \`NormalCompletion..."]␊
- test-repos/v8-v8-dev/src/blog/understanding-ecmascript-part-1.md: 191: MD032/blanks-around-lists Lists should be surrounded by blank lines [Context: "> 7. Return \`NormalCompletion(..."]␊
- test-repos/v8-v8-dev/src/blog/understanding-ecmascript-part-1.md: 113: MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| Name | Description ..."]␊
- test-repos/v8-v8-dev/src/blog/understanding-ecmascript-part-1.md: 117: MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| \`[[Target]]\` | Used for dire..."]␊
- test-repos/v8-v8-dev/src/blog/understanding-ecmascript-part-1.md: 102: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/v8-v8-dev/src/blog/v8-nodejs.md: 29: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/v8-v8-dev/src/blog/v8-release-80.md: 46: MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| || Des..."]␊
- test-repos/v8-v8-dev/src/blog/v8-release-80.md: 53: MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| ^^ | GC | -7%..."]␊
- test-repos/v8-v8-dev/src/blog/v8-release-86.md: 16: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/v8-v8-dev/src/blog/wasm-decompile.md: 153: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/v8-v8-dev/src/blog/wasm-decompile.md: 153: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/v8-v8-dev/src/blog/wasm-decompile.md: 153: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/v8-v8-dev/src/docs/become-committer.md: 34: MD034/no-bare-urls Bare URL used [Context: "v8-committers@googlegroups.com"]␊
- test-repos/v8-v8-dev/src/docs/become-committer.md: 44: MD034/no-bare-urls Bare URL used [Context: "v8-committers@googlegroups.com"]␊
- test-repos/v8-v8-dev/src/docs/blink-layout-tests.md: 11: MD059/descriptive-link-text Link text should be descriptive [Context: "[more]"]␊
- test-repos/v8-v8-dev/src/docs/contribute.md: 23: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/v8-v8-dev/src/docs/cross-compile-arm.md: 21: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/v8-v8-dev/src/docs/design-review-guidelines.md: 41: MD034/no-bare-urls Bare URL used [Context: "v8-eng-review-owners@googlegro..."]␊
- test-repos/v8-v8-dev/src/docs/design-review-guidelines.md: 78: MD034/no-bare-urls Bare URL used [Context: "v8-dev@googlegroups.com"]␊
- test-repos/v8-v8-dev/src/docs/design-review-guidelines.md: 80: MD034/no-bare-urls Bare URL used [Context: "v8-eng-review-owners@googlegro..."]␊
- test-repos/v8-v8-dev/src/docs/design-review-guidelines.md: 126: MD059/descriptive-link-text Link text should be descriptive [Context: "[Here]"]␊
- test-repos/v8-v8-dev/src/docs/feature-launch-process.md: 7: MD034/no-bare-urls Bare URL used [Context: "syg@chromium.org"]␊
- test-repos/v8-v8-dev/src/docs/feature-launch-process.md: 7: MD034/no-bare-urls Bare URL used [Context: "v8-dev@googlegroups.com"]␊
- test-repos/v8-v8-dev/src/docs/feature-launch-process.md: 9: MD034/no-bare-urls Bare URL used [Context: "gdeepti@chromium.org"]␊
- test-repos/v8-v8-dev/src/docs/feature-launch-process.md: 9: MD034/no-bare-urls Bare URL used [Context: "v8-dev@googlegroups.com"]␊
- test-repos/v8-v8-dev/src/docs/hidden-classes.md: 133: MD059/descriptive-link-text Link text should be descriptive [Context: "[link]"]␊
- test-repos/v8-v8-dev/src/docs/official-support.md: 19: MD034/no-bare-urls Bare URL used [Context: "v8-dev@googlegroups.com"]␊
- test-repos/v8-v8-dev/src/docs/respectful-code.md: 36: MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| Term | Suggested altern..."]␊
- test-repos/v8-v8-dev/src/docs/respectful-code.md: 45: MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| redline | priority line, l..."]␊
- test-repos/v8-v8-dev/src/docs/torque.md: 527: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/v8-v8-dev/src/docs/trace.md: 5: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/v8-v8-dev/src/feature-support.md: 11: MD033/no-inline-html Inline HTML [Element: feature-support]␊
- test-repos/v8-v8-dev/src/feature-support.md: 19: MD033/no-inline-html Inline HTML [Element: feature-support]␊
- test-repos/v8-v8-dev/src/feature-support.md: 27: MD033/no-inline-html Inline HTML [Element: feature-support]␊
- test-repos/v8-v8-dev/src/features/_intl-locale.md: 36: MD033/no-inline-html Inline HTML [Element: feature-support]␊
- test-repos/v8-v8-dev/src/features/array-flat-flatmap.md: 77: MD033/no-inline-html Inline HTML [Element: feature-support]␊
- test-repos/v8-v8-dev/src/features/at-method.md: 39: MD033/no-inline-html Inline HTML [Element: feature-support]␊
- test-repos/v8-v8-dev/src/features/atomics.md: 203: MD033/no-inline-html Inline HTML [Element: feature-support]␊
- test-repos/v8-v8-dev/src/features/atomics.md: 211: MD033/no-inline-html Inline HTML [Element: feature-support]␊
- test-repos/v8-v8-dev/src/features/bigint.md: 267: MD033/no-inline-html Inline HTML [Element: feature-support]␊
- test-repos/v8-v8-dev/src/features/class-fields.md: 194: MD033/no-inline-html Inline HTML [Element: feature-support]␊
- test-repos/v8-v8-dev/src/features/class-fields.md: 202: MD033/no-inline-html Inline HTML [Element: feature-support]␊
- test-repos/v8-v8-dev/src/features/class-fields.md: 210: MD033/no-inline-html Inline HTML [Element: feature-support]␊
- test-repos/v8-v8-dev/src/features/class-static-initializer-blocks.md: 104: MD033/no-inline-html Inline HTML [Element: feature-support]␊
- test-repos/v8-v8-dev/src/features/dynamic-import.md: 143: MD033/no-inline-html Inline HTML [Element: feature-support]␊
- test-repos/v8-v8-dev/src/features/error-cause.md: 70: MD033/no-inline-html Inline HTML [Element: feature-support]␊
- test-repos/v8-v8-dev/src/features/finding-in-arrays.md: 59: MD033/no-inline-html Inline HTML [Element: feature-support]␊
- test-repos/v8-v8-dev/src/features/function-tostring.md: 33: MD033/no-inline-html Inline HTML [Element: feature-support]␊
- test-repos/v8-v8-dev/src/features/globalthis.md: 43: MD033/no-inline-html Inline HTML [Element: feature-support]␊
- test-repos/v8-v8-dev/src/features/import-assertions.md: 84: MD034/no-bare-urls Bare URL used [Context: "https://chromestatus.com/featu..."]␊
- test-repos/v8-v8-dev/src/features/import-assertions.md: 88: MD034/no-bare-urls Bare URL used [Context: "https://github.com/babel/babel..."]␊
- test-repos/v8-v8-dev/src/features/import-attributes.md: 59: MD034/no-bare-urls Bare URL used [Context: "https://chromestatus.com/featu..."]␊
- test-repos/v8-v8-dev/src/features/import-attributes.md: 61: MD034/no-bare-urls Bare URL used [Context: "https://developer.apple.com/do..."]␊
- test-repos/v8-v8-dev/src/features/import-attributes.md: 62: MD034/no-bare-urls Bare URL used [Context: "https://nodejs.org/docs/latest..."]␊
- test-repos/v8-v8-dev/src/features/import-attributes.md: 63: MD034/no-bare-urls Bare URL used [Context: "https://babeljs.io/blog/2023/0..."]␊
- test-repos/v8-v8-dev/src/features/intl-displaynames.md: 110: MD033/no-inline-html Inline HTML [Element: feature-support]␊
- test-repos/v8-v8-dev/src/features/intl-listformat.md: 91: MD033/no-inline-html Inline HTML [Element: feature-support]␊
- test-repos/v8-v8-dev/src/features/intl-listformat.md: 74: MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| Type | Opti..."]␊
- test-repos/v8-v8-dev/src/features/intl-listformat.md: 80: MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| unit-narrow | \`{ t..."]␊
- test-repos/v8-v8-dev/src/features/intl-numberformat.md: 16: MD033/no-inline-html Inline HTML [Element: feature-support]␊
- test-repos/v8-v8-dev/src/features/intl-numberformat.md: 58: MD033/no-inline-html Inline HTML [Element: feature-support]␊
- test-repos/v8-v8-dev/src/features/intl-numberformat.md: 104: MD033/no-inline-html Inline HTML [Element: feature-support]␊
- test-repos/v8-v8-dev/src/features/intl-numberformat.md: 170: MD033/no-inline-html Inline HTML [Element: feature-support]␊
- test-repos/v8-v8-dev/src/features/intl-numberformat.md: 234: MD033/no-inline-html Inline HTML [Element: feature-support]␊
- test-repos/v8-v8-dev/src/features/intl-pluralrules.md: 126: MD033/no-inline-html Inline HTML [Element: feature-support]␊
- test-repos/v8-v8-dev/src/features/intl-relativetimeformat.md: 175: MD033/no-inline-html Inline HTML [Element: feature-support]␊
- test-repos/v8-v8-dev/src/features/iterator-helpers.md: 188: MD033/no-inline-html Inline HTML [Element: feature-support]␊
- test-repos/v8-v8-dev/src/features/logical-assignment.md: 92: MD033/no-inline-html Inline HTML [Element: feature-support]␊
- test-repos/v8-v8-dev/src/features/modules.md: 16: MD033/no-inline-html Inline HTML [Element: feature-support]␊
- test-repos/v8-v8-dev/src/features/nullish-coalescing.md: 155: MD033/no-inline-html Inline HTML [Element: feature-support]␊
- test-repos/v8-v8-dev/src/features/numeric-separators.md: 58: MD033/no-inline-html Inline HTML [Element: feature-support]␊
- test-repos/v8-v8-dev/src/features/object-fromentries.md: 20: MD033/no-inline-html Inline HTML [Element: feature-support]␊
- test-repos/v8-v8-dev/src/features/object-fromentries.md: 114: MD033/no-inline-html Inline HTML [Element: feature-support]␊
- test-repos/v8-v8-dev/src/features/object-has-own.md: 37: MD033/no-inline-html Inline HTML [Element: feature-support]␊
- test-repos/v8-v8-dev/src/features/object-rest-spread.md: 32: MD033/no-inline-html Inline HTML [Element: feature-support]␊
- test-repos/v8-v8-dev/src/features/object-rest-spread.md: 91: MD033/no-inline-html Inline HTML [Element: feature-support]␊
- test-repos/v8-v8-dev/src/features/optional-catch-binding.md: 37: MD033/no-inline-html Inline HTML [Element: feature-support]␊
- test-repos/v8-v8-dev/src/features/optional-chaining.md: 136: MD033/no-inline-html Inline HTML [Element: feature-support]␊
- test-repos/v8-v8-dev/src/features/private-brand-checks.md: 122: MD034/no-bare-urls Bare URL used [Context: "https://bugs.chromium.org/p/v8..."]␊
- test-repos/v8-v8-dev/src/features/promise-combinators.md: 35: MD033/no-inline-html Inline HTML [Element: feature-support]␊
- test-repos/v8-v8-dev/src/features/promise-combinators.md: 66: MD033/no-inline-html Inline HTML [Element: feature-support]␊
- test-repos/v8-v8-dev/src/features/promise-combinators.md: 95: MD033/no-inline-html Inline HTML [Element: feature-support]␊
- test-repos/v8-v8-dev/src/features/promise-combinators.md: 120: MD033/no-inline-html Inline HTML [Element: feature-support]␊
- test-repos/v8-v8-dev/src/features/promise-combinators.md: 23: MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| name ..."]␊
- test-repos/v8-v8-dev/src/features/promise-combinators.md: 28: MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| [\`Promise.any\`](#promise.any..."]␊
- test-repos/v8-v8-dev/src/features/promise-finally.md: 82: MD033/no-inline-html Inline HTML [Element: feature-support]␊
- test-repos/v8-v8-dev/src/features/regexp-match-indices.md: 134: MD033/no-inline-html Inline HTML [Element: feature-support]␊
- test-repos/v8-v8-dev/src/features/regexp-v-flag.md: 254: MD033/no-inline-html Inline HTML [Element: feature-support]␊
- test-repos/v8-v8-dev/src/features/simd.md: 217: MD059/descriptive-link-text Link text should be descriptive [Context: "[link]"]␊
- test-repos/v8-v8-dev/src/features/stable-sort.md: 76: MD033/no-inline-html Inline HTML [Element: feature-support]␊
- test-repos/v8-v8-dev/src/features/stable-sort.md: 84: MD033/no-inline-html Inline HTML [Element: feature-support]␊
- test-repos/v8-v8-dev/src/features/string-matchall.md: 92: MD033/no-inline-html Inline HTML [Element: feature-support]␊
- test-repos/v8-v8-dev/src/features/string-replaceall.md: 122: MD033/no-inline-html Inline HTML [Element: feature-support]␊
- test-repos/v8-v8-dev/src/features/string-trimming.md: 42: MD033/no-inline-html Inline HTML [Element: feature-support]␊
- test-repos/v8-v8-dev/src/features/subsume-json.md: 176: MD033/no-inline-html Inline HTML [Element: feature-support]␊
- test-repos/v8-v8-dev/src/features/symbol-description.md: 53: MD033/no-inline-html Inline HTML [Element: feature-support]␊
- test-repos/v8-v8-dev/src/features/top-level-await.md: 113: MD033/no-inline-html Inline HTML [Element: feature-support]␊
- test-repos/v8-v8-dev/src/features/weak-references.md: 232: MD033/no-inline-html Inline HTML [Element: feature-support]␊
- test-repos/v8-v8-dev/src/features/well-formed-json-stringify.md: 32: MD033/no-inline-html Inline HTML [Element: feature-support]`
+ `test-repos/v8-v8-dev/src/blog/adaptor-frame.md:75:80 MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
+ test-repos/v8-v8-dev/src/blog/adaptor-frame.md:77:143 MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
+ test-repos/v8-v8-dev/src/blog/adaptor-frame.md:89:183 MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
+ test-repos/v8-v8-dev/src/blog/adaptor-frame.md:232:288 MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
+ test-repos/v8-v8-dev/src/blog/explicit-compile-hints.md:22:67 MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
+ test-repos/v8-v8-dev/src/blog/extras/understanding-ecmascript-part-2-extra.md:13 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊
+ test-repos/v8-v8-dev/src/blog/fast-for-in.md:271 MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| Internal method | Hand..."]␊
+ test-repos/v8-v8-dev/src/blog/fast-for-in.md:277 MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| \`[[OwnPropertyKeys]]\` | \`own..."]␊
+ test-repos/v8-v8-dev/src/blog/fast-for-in.md:351 MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| Position | Name ..."]␊
+ test-repos/v8-v8-dev/src/blog/fast-for-in.md:369 MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| 17 | \`ForInFilter\` ..."]␊
+ test-repos/v8-v8-dev/src/blog/fast-super.md:27 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊
+ test-repos/v8-v8-dev/src/blog/high-performance-cpp-gc.md:29:413 MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
+ test-repos/v8-v8-dev/src/blog/jspi-ot.md:13:53 MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
+ test-repos/v8-v8-dev/src/blog/jspi-ot.md:13:118 MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
+ test-repos/v8-v8-dev/src/blog/jspi-ot.md:23:25 MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
+ test-repos/v8-v8-dev/src/blog/jspi-ot.md:38:91 MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
+ test-repos/v8-v8-dev/src/blog/lazy-unlinking.md:183 MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| Benchmark | Kind ..."]␊
+ test-repos/v8-v8-dev/src/blog/lazy-unlinking.md:188 MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| youtube.com | Average size ..."]␊
+ test-repos/v8-v8-dev/src/blog/maglev.md:143 MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| Benchmark | Energy Consump..."]␊
+ test-repos/v8-v8-dev/src/blog/maglev.md:146 MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| Speedometer | -10% ..."]␊
+ test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:84:67 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
+ test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:85:67 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
+ test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:86:67 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
+ test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:87:67 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
+ test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:133:79 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
+ test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:134:79 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
+ test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:135:79 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
+ test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:136:79 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
+ test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:137:79 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
+ test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:138:79 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
+ test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:156:64 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
+ test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:157:64 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
+ test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:158:64 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
+ test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:159:64 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
+ test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:160:64 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
+ test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:161:64 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
+ test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:162:64 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
+ test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:163:64 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
+ test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:164:64 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
+ test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:165:64 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
+ test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:166:64 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
+ test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:167:64 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
+ test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:187:66 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
+ test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:188:66 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
+ test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:189:66 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
+ test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:190:66 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
+ test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:191:66 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
+ test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:192:66 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
+ test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:193:66 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
+ test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:194:66 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
+ test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:195:66 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
+ test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:196:66 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
+ test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:197:66 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
+ test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:198:66 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
+ test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:199:66 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
+ test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:200:66 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
+ test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:201:66 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
+ test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:82 MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| C++ ..."]␊
+ test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:88 MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| \`\`\` ..."]␊
+ test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:131 MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| C++ ..."]␊
+ test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:139 MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| \`\`\` ..."]␊
+ test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:185 MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| C++ ..."]␊
+ test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:202 MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| \`\`\` ..."]␊
+ test-repos/v8-v8-dev/src/blog/optimizing-v8-memory.md:35:290 MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
+ test-repos/v8-v8-dev/src/blog/pointer-compression.md:192:74 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
+ test-repos/v8-v8-dev/src/blog/pointer-compression.md:193:74 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
+ test-repos/v8-v8-dev/src/blog/pointer-compression.md:194:74 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
+ test-repos/v8-v8-dev/src/blog/pointer-compression.md:195:74 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
+ test-repos/v8-v8-dev/src/blog/pointer-compression.md:196:74 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
+ test-repos/v8-v8-dev/src/blog/pointer-compression.md:197:74 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
+ test-repos/v8-v8-dev/src/blog/pointer-compression.md:198:76 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
+ test-repos/v8-v8-dev/src/blog/pointer-compression.md:215:74 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
+ test-repos/v8-v8-dev/src/blog/pointer-compression.md:216:74 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
+ test-repos/v8-v8-dev/src/blog/pointer-compression.md:217:74 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
+ test-repos/v8-v8-dev/src/blog/pointer-compression.md:218:74 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
+ test-repos/v8-v8-dev/src/blog/pointer-compression.md:219:74 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
+ test-repos/v8-v8-dev/src/blog/pointer-compression.md:220:74 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
+ test-repos/v8-v8-dev/src/blog/pointer-compression.md:330:79 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
+ test-repos/v8-v8-dev/src/blog/pointer-compression.md:331:79 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
+ test-repos/v8-v8-dev/src/blog/pointer-compression.md:332:79 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
+ test-repos/v8-v8-dev/src/blog/pointer-compression.md:333:81 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
+ test-repos/v8-v8-dev/src/blog/pointer-compression.md:334:81 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
+ test-repos/v8-v8-dev/src/blog/pointer-compression.md:335:81 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
+ test-repos/v8-v8-dev/src/blog/pointer-compression.md:198:74 MD056/table-column-count Table column count [Expected: 3; Actual: 4; Too many cells, extra data will be missing]␊
+ test-repos/v8-v8-dev/src/blog/pointer-compression.md:333:79 MD056/table-column-count Table column count [Expected: 3; Actual: 4; Too many cells, extra data will be missing]␊
+ test-repos/v8-v8-dev/src/blog/pointer-compression.md:334:79 MD056/table-column-count Table column count [Expected: 3; Actual: 4; Too many cells, extra data will be missing]␊
+ test-repos/v8-v8-dev/src/blog/pointer-compression.md:335:79 MD056/table-column-count Table column count [Expected: 3; Actual: 4; Too many cells, extra data will be missing]␊
+ test-repos/v8-v8-dev/src/blog/react-cliff.md:81 MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| representation ..."]␊
+ test-repos/v8-v8-dev/src/blog/react-cliff.md:87 MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| 64-bit IEEE-754 floating-poi..."]␊
+ test-repos/v8-v8-dev/src/blog/understanding-ecmascript-part-1.md:41 MD032/blanks-around-lists Lists should be surrounded by blank lines [Context: "> 3. Return \`? HasOwnProperty(..."]␊
+ test-repos/v8-v8-dev/src/blog/understanding-ecmascript-part-1.md:55 MD032/blanks-around-lists Lists should be surrounded by blank lines [Context: "> 5. Return \`true\`."]␊
+ test-repos/v8-v8-dev/src/blog/understanding-ecmascript-part-1.md:91 MD032/blanks-around-lists Lists should be surrounded by blank lines [Context: "> 1. Return \`! OrdinaryGetOwnP..."]␊
+ test-repos/v8-v8-dev/src/blog/understanding-ecmascript-part-1.md:177 MD032/blanks-around-lists Lists should be surrounded by blank lines [Context: "> 10. Return \`NormalCompletion..."]␊
+ test-repos/v8-v8-dev/src/blog/understanding-ecmascript-part-1.md:191 MD032/blanks-around-lists Lists should be surrounded by blank lines [Context: "> 7. Return \`NormalCompletion(..."]␊
+ test-repos/v8-v8-dev/src/blog/understanding-ecmascript-part-1.md:113 MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| Name | Description ..."]␊
+ test-repos/v8-v8-dev/src/blog/understanding-ecmascript-part-1.md:117 MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| \`[[Target]]\` | Used for dire..."]␊
+ test-repos/v8-v8-dev/src/blog/understanding-ecmascript-part-1.md:102:52 MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
+ test-repos/v8-v8-dev/src/blog/v8-nodejs.md:29:153 MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
+ test-repos/v8-v8-dev/src/blog/v8-release-80.md:46 MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| || Des..."]␊
+ test-repos/v8-v8-dev/src/blog/v8-release-80.md:53 MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| ^^ | GC | -7%..."]␊
+ test-repos/v8-v8-dev/src/blog/v8-release-80.md:47:15 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/v8-v8-dev/src/blog/v8-release-80.md:48:15 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/v8-v8-dev/src/blog/v8-release-80.md:49:15 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/v8-v8-dev/src/blog/v8-release-80.md:50:15 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/v8-v8-dev/src/blog/v8-release-80.md:51:15 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/v8-v8-dev/src/blog/v8-release-80.md:52:15 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/v8-v8-dev/src/blog/v8-release-80.md:53:15 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/v8-v8-dev/src/blog/v8-release-86.md:16:371 MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
+ test-repos/v8-v8-dev/src/blog/wasm-decompile.md:153:61 MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
+ test-repos/v8-v8-dev/src/blog/wasm-decompile.md:153:206 MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
+ test-repos/v8-v8-dev/src/blog/wasm-decompile.md:153:413 MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
+ test-repos/v8-v8-dev/src/docs/become-committer.md:34:141 MD034/no-bare-urls Bare URL used [Context: "v8-committers@googlegroups.com"]␊
+ test-repos/v8-v8-dev/src/docs/become-committer.md:44:326 MD034/no-bare-urls Bare URL used [Context: "v8-committers@googlegroups.com"]␊
+ test-repos/v8-v8-dev/src/docs/blink-layout-tests.md:11:78 MD059/descriptive-link-text Link text should be descriptive [Context: "[more]"]␊
+ test-repos/v8-v8-dev/src/docs/contribute.md:23:19 MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
+ test-repos/v8-v8-dev/src/docs/cross-compile-arm.md:21:93 MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
+ test-repos/v8-v8-dev/src/docs/design-review-guidelines.md:41:227 MD034/no-bare-urls Bare URL used [Context: "v8-eng-review-owners@googlegro..."]␊
+ test-repos/v8-v8-dev/src/docs/design-review-guidelines.md:78:50 MD034/no-bare-urls Bare URL used [Context: "v8-dev@googlegroups.com"]␊
+ test-repos/v8-v8-dev/src/docs/design-review-guidelines.md:80:27 MD034/no-bare-urls Bare URL used [Context: "v8-eng-review-owners@googlegro..."]␊
+ test-repos/v8-v8-dev/src/docs/design-review-guidelines.md:126:2 MD059/descriptive-link-text Link text should be descriptive [Context: "[Here]"]␊
+ test-repos/v8-v8-dev/src/docs/feature-launch-process.md:7:79 MD034/no-bare-urls Bare URL used [Context: "syg@chromium.org"]␊
+ test-repos/v8-v8-dev/src/docs/feature-launch-process.md:7:100 MD034/no-bare-urls Bare URL used [Context: "v8-dev@googlegroups.com"]␊
+ test-repos/v8-v8-dev/src/docs/feature-launch-process.md:9:40 MD034/no-bare-urls Bare URL used [Context: "gdeepti@chromium.org"]␊
+ test-repos/v8-v8-dev/src/docs/feature-launch-process.md:9:65 MD034/no-bare-urls Bare URL used [Context: "v8-dev@googlegroups.com"]␊
+ test-repos/v8-v8-dev/src/docs/hidden-classes.md:133:120 MD059/descriptive-link-text Link text should be descriptive [Context: "[link]"]␊
+ test-repos/v8-v8-dev/src/docs/official-support.md:19:15 MD034/no-bare-urls Bare URL used [Context: "v8-dev@googlegroups.com"]␊
+ test-repos/v8-v8-dev/src/docs/respectful-code.md:36 MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| Term | Suggested altern..."]␊
+ test-repos/v8-v8-dev/src/docs/respectful-code.md:45 MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| redline | priority line, l..."]␊
+ test-repos/v8-v8-dev/src/docs/torque.md:527:341 MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
+ test-repos/v8-v8-dev/src/docs/trace.md:5:287 MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
+ test-repos/v8-v8-dev/src/feature-support.md:11:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊
+ test-repos/v8-v8-dev/src/feature-support.md:19:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊
+ test-repos/v8-v8-dev/src/feature-support.md:27:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊
+ test-repos/v8-v8-dev/src/features/_intl-locale.md:36:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊
+ test-repos/v8-v8-dev/src/features/array-flat-flatmap.md:77:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊
+ test-repos/v8-v8-dev/src/features/at-method.md:39:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊
+ test-repos/v8-v8-dev/src/features/atomics.md:203:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊
+ test-repos/v8-v8-dev/src/features/atomics.md:211:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊
+ test-repos/v8-v8-dev/src/features/bigint.md:267:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊
+ test-repos/v8-v8-dev/src/features/class-fields.md:194:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊
+ test-repos/v8-v8-dev/src/features/class-fields.md:202:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊
+ test-repos/v8-v8-dev/src/features/class-fields.md:210:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊
+ test-repos/v8-v8-dev/src/features/class-static-initializer-blocks.md:104:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊
+ test-repos/v8-v8-dev/src/features/dynamic-import.md:143:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊
+ test-repos/v8-v8-dev/src/features/error-cause.md:70:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊
+ test-repos/v8-v8-dev/src/features/explicit-resource-management.md:214:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊
+ test-repos/v8-v8-dev/src/features/finding-in-arrays.md:59:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊
+ test-repos/v8-v8-dev/src/features/function-tostring.md:33:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊
+ test-repos/v8-v8-dev/src/features/globalthis.md:43:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊
+ test-repos/v8-v8-dev/src/features/import-assertions.md:84:29 MD034/no-bare-urls Bare URL used [Context: "https://chromestatus.com/featu..."]␊
+ test-repos/v8-v8-dev/src/features/import-assertions.md:88:29 MD034/no-bare-urls Bare URL used [Context: "https://github.com/babel/babel..."]␊
+ test-repos/v8-v8-dev/src/features/import-attributes.md:59:30 MD034/no-bare-urls Bare URL used [Context: "https://chromestatus.com/featu..."]␊
+ test-repos/v8-v8-dev/src/features/import-attributes.md:61:31 MD034/no-bare-urls Bare URL used [Context: "https://developer.apple.com/do..."]␊
+ test-repos/v8-v8-dev/src/features/import-attributes.md:62:32 MD034/no-bare-urls Bare URL used [Context: "https://nodejs.org/docs/latest..."]␊
+ test-repos/v8-v8-dev/src/features/import-attributes.md:63:29 MD034/no-bare-urls Bare URL used [Context: "https://babeljs.io/blog/2023/0..."]␊
+ test-repos/v8-v8-dev/src/features/intl-displaynames.md:110:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊
+ test-repos/v8-v8-dev/src/features/intl-listformat.md:91:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊
+ test-repos/v8-v8-dev/src/features/intl-listformat.md:74 MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| Type | Opti..."]␊
+ test-repos/v8-v8-dev/src/features/intl-listformat.md:80 MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| unit-narrow | \`{ t..."]␊
+ test-repos/v8-v8-dev/src/features/intl-numberformat.md:16:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊
+ test-repos/v8-v8-dev/src/features/intl-numberformat.md:58:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊
+ test-repos/v8-v8-dev/src/features/intl-numberformat.md:104:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊
+ test-repos/v8-v8-dev/src/features/intl-numberformat.md:170:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊
+ test-repos/v8-v8-dev/src/features/intl-numberformat.md:234:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊
+ test-repos/v8-v8-dev/src/features/intl-pluralrules.md:126:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊
+ test-repos/v8-v8-dev/src/features/intl-relativetimeformat.md:175:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊
+ test-repos/v8-v8-dev/src/features/iterator-helpers.md:188:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊
+ test-repos/v8-v8-dev/src/features/logical-assignment.md:92:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊
+ test-repos/v8-v8-dev/src/features/modules.md:16:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊
+ test-repos/v8-v8-dev/src/features/nullish-coalescing.md:155:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊
+ test-repos/v8-v8-dev/src/features/numeric-separators.md:58:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊
+ test-repos/v8-v8-dev/src/features/object-fromentries.md:20:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊
+ test-repos/v8-v8-dev/src/features/object-fromentries.md:114:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊
+ test-repos/v8-v8-dev/src/features/object-has-own.md:37:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊
+ test-repos/v8-v8-dev/src/features/object-rest-spread.md:32:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊
+ test-repos/v8-v8-dev/src/features/object-rest-spread.md:91:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊
+ test-repos/v8-v8-dev/src/features/optional-catch-binding.md:37:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊
+ test-repos/v8-v8-dev/src/features/optional-chaining.md:136:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊
+ test-repos/v8-v8-dev/src/features/private-brand-checks.md:122:29 MD034/no-bare-urls Bare URL used [Context: "https://bugs.chromium.org/p/v8..."]␊
+ test-repos/v8-v8-dev/src/features/promise-combinators.md:35:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊
+ test-repos/v8-v8-dev/src/features/promise-combinators.md:66:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊
+ test-repos/v8-v8-dev/src/features/promise-combinators.md:95:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊
+ test-repos/v8-v8-dev/src/features/promise-combinators.md:120:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊
+ test-repos/v8-v8-dev/src/features/promise-combinators.md:23 MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| name ..."]␊
+ test-repos/v8-v8-dev/src/features/promise-combinators.md:28 MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| [\`Promise.any\`](#promise.any..."]␊
+ test-repos/v8-v8-dev/src/features/promise-combinators.md:25:172 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/v8-v8-dev/src/features/promise-combinators.md:26:162 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/v8-v8-dev/src/features/promise-combinators.md:27:162 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/v8-v8-dev/src/features/promise-combinators.md:28:172 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/v8-v8-dev/src/features/promise-finally.md:82:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊
+ test-repos/v8-v8-dev/src/features/regexp-match-indices.md:134:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊
+ test-repos/v8-v8-dev/src/features/regexp-v-flag.md:254:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊
+ test-repos/v8-v8-dev/src/features/simd.md:217:197 MD059/descriptive-link-text Link text should be descriptive [Context: "[link]"]␊
+ test-repos/v8-v8-dev/src/features/stable-sort.md:76:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊
+ test-repos/v8-v8-dev/src/features/stable-sort.md:84:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊
+ test-repos/v8-v8-dev/src/features/string-matchall.md:92:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊
+ test-repos/v8-v8-dev/src/features/string-replaceall.md:122:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊
+ test-repos/v8-v8-dev/src/features/string-trimming.md:42:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊
+ test-repos/v8-v8-dev/src/features/subsume-json.md:176:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊
+ test-repos/v8-v8-dev/src/features/symbol-description.md:53:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊
+ test-repos/v8-v8-dev/src/features/top-level-await.md:113:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊
+ test-repos/v8-v8-dev/src/features/weak-references.md:232:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊
+ test-repos/v8-v8-dev/src/features/well-formed-json-stringify.md:32:1 MD033/no-inline-html Inline HTML [Element: feature-support]`
## https://github.com/webhintio/hint
> Expected linting violations
- `test-repos/webhintio-hint/packages/hint-apple-touch-icons/README.md: 198: MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "icon scaling"] [Context: "[icon scaling]: https://realfa..."]␊
- test-repos/webhintio-hint/packages/hint-apple-touch-icons/README.md: 202: MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "web app manifest spec"] [Context: "[web app manifest spec]: https..."]␊
- test-repos/webhintio-hint/packages/hint-axe/README.md: 170: MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "axe rules"] [Context: "[axe rules]: https://github.co..."]␊
- test-repos/webhintio-hint/packages/hint-compat-api/README.md: 48: MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "npm docs"] [Context: "[npm docs]: https://docs.npmjs..."]␊
- test-repos/webhintio-hint/packages/hint-compat-api/docs/html.md: 153: MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "global-attr"] [Context: "[global-attr]: https://develop..."]␊
- test-repos/webhintio-hint/packages/hint-detect-css-reflows/README.md: 96: MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "understanding-critical-path"] [Context: "[understanding-critical-path]:..."]␊
- test-repos/webhintio-hint/packages/hint-detect-css-reflows/docs/composite.md: 73: MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "understanding-critical-path"] [Context: "[understanding-critical-path]:..."]␊
- test-repos/webhintio-hint/packages/hint-detect-css-reflows/docs/layout.md: 73: MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "understanding-critical-path"] [Context: "[understanding-critical-path]:..."]␊
- test-repos/webhintio-hint/packages/hint-detect-css-reflows/docs/paint.md: 73: MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "understanding-critical-path"] [Context: "[understanding-critical-path]:..."]␊
- test-repos/webhintio-hint/packages/hint-doctype/README.md: 130: MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "npm docs"] [Context: "[npm docs]: https://docs.npmjs..."]␊
- test-repos/webhintio-hint/packages/hint-highest-available-document-mode/README.md: 420: MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "mod_mime"] [Context: "[mod_mime]: https://httpd.apac..."]␊
- test-repos/webhintio-hint/packages/hint-http-compression/README.md: 1087: MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "gzip is not enough"] [Context: "[gzip is not enough]: https://..."]␊
- test-repos/webhintio-hint/packages/hint-meta-viewport/README.md: 268: MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "mdn viewport meta tag"] [Context: "[mdn viewport meta tag]: https..."]␊
- test-repos/webhintio-hint/packages/hint-meta-viewport/README.md: 271: MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "ppk initial-scale"] [Context: "[ppk initial-scale]: https://w..."]␊
- test-repos/webhintio-hint/packages/hint-minified-js/README.md: 102: MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "npm documentation"] [Context: "[NPM documentation]:"]␊
- test-repos/webhintio-hint/packages/hint-no-p3p/README.md: 157: MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "support"] [Context: "[support]: https://en.wikipedi..."]␊
- test-repos/webhintio-hint/packages/hint-no-protocol-relative-urls/README.md: 110: MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "ie issue"] [Context: "[ie issue]: https://www.steves..."]␊
- test-repos/webhintio-hint/packages/hint-performance-budget/README.md: 198: MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "tcp handshake"] [Context: "[tcp handshake]: https://hpbn...."]␊
- test-repos/webhintio-hint/packages/hint-strict-transport-security/README.md: 278: MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "mod_mime"] [Context: "[mod_mime]: https://httpd.apac..."]␊
- test-repos/webhintio-hint/packages/hint-x-content-type-options/README.md: 181: MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "fetch spec issue"] [Context: "[fetch spec issue]: https://gi..."]␊
- test-repos/webhintio-hint/packages/hint/docs/about/CONTRIBUTORS.md: 10: MD056/table-column-count Table column count [Expected: 3; Actual: 2; Too few cells, row will be missing data]␊
- test-repos/webhintio-hint/packages/hint/docs/about/GOVERNANCE.md: 218: MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "openjs foundation"] [Context: "[OpenJS Foundation]: https://o..."]␊
- test-repos/webhintio-hint/packages/hint/docs/about/GOVERNANCE.md: 219: MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "webhint org"] [Context: "[webhint org]: https://github...."]␊
- test-repos/webhintio-hint/packages/hint/docs/contributor-guide/getting-started/architecture.md: 78: MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "typescript"] [Context: "[typescript]: https://www.type..."]␊
- test-repos/webhintio-hint/packages/hint/docs/contributor-guide/getting-started/development-environment.md: 120: MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "npm"] [Context: "[npm]: https://www.npmjs.com/g..."]␊
- test-repos/webhintio-hint/packages/hint/docs/contributor-guide/how-to/hint.md: 150: MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "custom hint"] [Context: "[custom hint]: ../guides/creat..."]␊
- test-repos/webhintio-hint/packages/hint/docs/contributor-guide/how-to/hint.md: 154: MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "npx issue"] [Context: "[npx issue]: https://github.co..."]␊
- test-repos/webhintio-hint/packages/hint/docs/user-guide/development-flow-integration/local-server.md: 58: MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "jenkins"] [Context: "[jenkins]: https://jenkins.io"]␊
- test-repos/webhintio-hint/packages/hint/docs/user-guide/development-flow-integration/local-server.md: 59: MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "local-server"] [Context: "[local-server]: #test-a-local-..."]␊
- test-repos/webhintio-hint/packages/hint/docs/user-guide/development-flow-integration/local-server.md: 62: MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "webhint github"] [Context: "[webhint github]: https://gith..."]␊
- test-repos/webhintio-hint/packages/hint/docs/user-guide/development-flow-integration/local-server.md: 63: MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "webhint repo"] [Context: "[webhint repo]: https://github..."]␊
- test-repos/webhintio-hint/packages/hint/docs/user-guide/development-flow-integration/local-server.md: 64: MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "webhint.io"] [Context: "[webhint.io]: https://webhint...."]␊
- test-repos/webhintio-hint/packages/hint/docs/user-guide/development-flow-integration/local-server.md: 65: MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "webhintio repo"] [Context: "[webhintio repo]: https://gith..."]␊
- test-repos/webhintio-hint/packages/hint/docs/user-guide/development-flow-integration/travis-and-azure.md: 4: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
- test-repos/webhintio-hint/packages/hint/docs/user-guide/index.md: 178: MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "nodejsdownloadcurrent"] [Context: "[NodejsDownloadCurrent]: https..."]␊
- test-repos/webhintio-hint/packages/hint/docs/user-guide/troubleshoot/summary.md: 137: MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "githubwebhintiohint308"] [Context: "[GithubWebhintioHint308]: http..."]␊
- test-repos/webhintio-hint/packages/hint/docs/user-guide/troubleshoot/summary.md: 141: MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "npmjspackageiltorb"] [Context: "[NpmjsPackageIltorb]: https://..."]␊
- test-repos/webhintio-hint/packages/parser-html/README.md: 51: MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "events"] [Context: "[events]: https://webhint.io/d..."]`
+ `test-repos/webhintio-hint/packages/hint-apple-touch-icons/README.md:198:1 MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "icon scaling"] [Context: "[icon scaling]: https://realfa..."]␊
+ test-repos/webhintio-hint/packages/hint-apple-touch-icons/README.md:202:1 MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "web app manifest spec"] [Context: "[web app manifest spec]: https..."]␊
+ test-repos/webhintio-hint/packages/hint-axe/README.md:170:1 MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "axe rules"] [Context: "[axe rules]: https://github.co..."]␊
+ test-repos/webhintio-hint/packages/hint-compat-api/docs/html.md:153:1 MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "global-attr"] [Context: "[global-attr]: https://develop..."]␊
+ test-repos/webhintio-hint/packages/hint-compat-api/README.md:48:1 MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "npm docs"] [Context: "[npm docs]: https://docs.npmjs..."]␊
+ test-repos/webhintio-hint/packages/hint-detect-css-reflows/docs/composite.md:73:1 MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "understanding-critical-path"] [Context: "[understanding-critical-path]:..."]␊
+ test-repos/webhintio-hint/packages/hint-detect-css-reflows/docs/layout.md:73:1 MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "understanding-critical-path"] [Context: "[understanding-critical-path]:..."]␊
+ test-repos/webhintio-hint/packages/hint-detect-css-reflows/docs/paint.md:73:1 MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "understanding-critical-path"] [Context: "[understanding-critical-path]:..."]␊
+ test-repos/webhintio-hint/packages/hint-detect-css-reflows/README.md:96:1 MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "understanding-critical-path"] [Context: "[understanding-critical-path]:..."]␊
+ test-repos/webhintio-hint/packages/hint-doctype/README.md:130:1 MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "npm docs"] [Context: "[npm docs]: https://docs.npmjs..."]␊
+ test-repos/webhintio-hint/packages/hint-highest-available-document-mode/README.md:420:1 MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "mod_mime"] [Context: "[mod_mime]: https://httpd.apac..."]␊
+ test-repos/webhintio-hint/packages/hint-http-compression/README.md:1087:1 MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "gzip is not enough"] [Context: "[gzip is not enough]: https://..."]␊
+ test-repos/webhintio-hint/packages/hint-meta-viewport/README.md:268:1 MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "mdn viewport meta tag"] [Context: "[mdn viewport meta tag]: https..."]␊
+ test-repos/webhintio-hint/packages/hint-meta-viewport/README.md:271:1 MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "ppk initial-scale"] [Context: "[ppk initial-scale]: https://w..."]␊
+ test-repos/webhintio-hint/packages/hint-minified-js/README.md:102:1 MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "npm documentation"] [Context: "[NPM documentation]:"]␊
+ test-repos/webhintio-hint/packages/hint-no-p3p/README.md:157:1 MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "support"] [Context: "[support]: https://en.wikipedi..."]␊
+ test-repos/webhintio-hint/packages/hint-no-protocol-relative-urls/README.md:110:1 MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "ie issue"] [Context: "[ie issue]: https://www.steves..."]␊
+ test-repos/webhintio-hint/packages/hint-performance-budget/README.md:198:1 MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "tcp handshake"] [Context: "[tcp handshake]: https://hpbn...."]␊
+ test-repos/webhintio-hint/packages/hint-strict-transport-security/README.md:278:1 MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "mod_mime"] [Context: "[mod_mime]: https://httpd.apac..."]␊
+ test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:21:41 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:21:50 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:22:25 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:22:35 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:22:39 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:22:48 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:23:25 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:23:35 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:23:39 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:23:49 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:24:40 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:24:49 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:25:40 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:25:49 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:26:40 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:26:49 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:27:40 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:27:49 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊
+ test-repos/webhintio-hint/packages/hint-x-content-type-options/README.md:181:1 MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "fetch spec issue"] [Context: "[fetch spec issue]: https://gi..."]␊
+ test-repos/webhintio-hint/packages/hint/docs/about/CONTRIBUTORS.md:10:370 MD056/table-column-count Table column count [Expected: 3; Actual: 2; Too few cells, row will be missing data]␊
+ test-repos/webhintio-hint/packages/hint/docs/about/GOVERNANCE.md:218:1 MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "openjs foundation"] [Context: "[OpenJS Foundation]: https://o..."]␊
+ test-repos/webhintio-hint/packages/hint/docs/about/GOVERNANCE.md:219:1 MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "webhint org"] [Context: "[webhint org]: https://github...."]␊
+ test-repos/webhintio-hint/packages/hint/docs/contributor-guide/getting-started/architecture.md:78:1 MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "typescript"] [Context: "[typescript]: https://www.type..."]␊
+ test-repos/webhintio-hint/packages/hint/docs/contributor-guide/getting-started/development-environment.md:120:1 MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "npm"] [Context: "[npm]: https://www.npmjs.com/g..."]␊
+ test-repos/webhintio-hint/packages/hint/docs/contributor-guide/getting-started/development-environment.md:94:11 MD060/table-column-style Table column style [Table pipe is missing space to the left for style "compact"]␊
+ test-repos/webhintio-hint/packages/hint/docs/contributor-guide/getting-started/development-environment.md:95:11 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊
+ test-repos/webhintio-hint/packages/hint/docs/contributor-guide/getting-started/development-environment.md:100:71 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊
+ test-repos/webhintio-hint/packages/hint/docs/contributor-guide/getting-started/development-environment.md:102:54 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊
+ test-repos/webhintio-hint/packages/hint/docs/contributor-guide/getting-started/development-environment.md:104:13 MD060/table-column-style Table column style [Table pipe is missing space to the left for style "compact"]␊
+ test-repos/webhintio-hint/packages/hint/docs/contributor-guide/how-to/hint.md:150:1 MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "custom hint"] [Context: "[custom hint]: ../guides/creat..."]␊
+ test-repos/webhintio-hint/packages/hint/docs/contributor-guide/how-to/hint.md:154:1 MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "npx issue"] [Context: "[npx issue]: https://github.co..."]␊
+ test-repos/webhintio-hint/packages/hint/docs/contributor-guide/index.md:8:1 MD060/table-column-style Table column style [Table pipe is missing space to the right for style "compact"]␊
+ test-repos/webhintio-hint/packages/hint/docs/contributor-guide/index.md:8:7 MD060/table-column-style Table column style [Table pipe is missing space to the right for style "compact"]␊
+ test-repos/webhintio-hint/packages/hint/docs/user-guide/concepts/hints.md:82:1 MD060/table-column-style Table column style [Table pipe is missing space to the right for style "compact"]␊
+ test-repos/webhintio-hint/packages/hint/docs/user-guide/concepts/hints.md:82:7 MD060/table-column-style Table column style [Table pipe is missing space to the right for style "compact"]␊
+ test-repos/webhintio-hint/packages/hint/docs/user-guide/concepts/hints.md:113:1 MD060/table-column-style Table column style [Table pipe is missing space to the right for style "compact"]␊
+ test-repos/webhintio-hint/packages/hint/docs/user-guide/concepts/hints.md:113:7 MD060/table-column-style Table column style [Table pipe is missing space to the right for style "compact"]␊
+ test-repos/webhintio-hint/packages/hint/docs/user-guide/configuring-webhint/summary.md:21:1 MD060/table-column-style Table column style [Table pipe is missing space to the right for style "compact"]␊
+ test-repos/webhintio-hint/packages/hint/docs/user-guide/configuring-webhint/summary.md:21:7 MD060/table-column-style Table column style [Table pipe is missing space to the right for style "compact"]␊
+ test-repos/webhintio-hint/packages/hint/docs/user-guide/development-flow-integration/local-server.md:58:1 MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "jenkins"] [Context: "[jenkins]: https://jenkins.io"]␊
+ test-repos/webhintio-hint/packages/hint/docs/user-guide/development-flow-integration/local-server.md:59:1 MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "local-server"] [Context: "[local-server]: #test-a-local-..."]␊
+ test-repos/webhintio-hint/packages/hint/docs/user-guide/development-flow-integration/local-server.md:62:1 MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "webhint github"] [Context: "[webhint github]: https://gith..."]␊
+ test-repos/webhintio-hint/packages/hint/docs/user-guide/development-flow-integration/local-server.md:63:1 MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "webhint repo"] [Context: "[webhint repo]: https://github..."]␊
+ test-repos/webhintio-hint/packages/hint/docs/user-guide/development-flow-integration/local-server.md:64:1 MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "webhint.io"] [Context: "[webhint.io]: https://webhint...."]␊
+ test-repos/webhintio-hint/packages/hint/docs/user-guide/development-flow-integration/local-server.md:65:1 MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "webhintio repo"] [Context: "[webhintio repo]: https://gith..."]␊
+ test-repos/webhintio-hint/packages/hint/docs/user-guide/development-flow-integration/travis-and-azure.md:4:35 MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊
+ test-repos/webhintio-hint/packages/hint/docs/user-guide/development-flow-integration/travis-and-azure.md:405:43 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊
+ test-repos/webhintio-hint/packages/hint/docs/user-guide/development-flow-integration/travis-and-azure.md:406:20 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊
+ test-repos/webhintio-hint/packages/hint/docs/user-guide/development-flow-integration/travis-and-azure.md:406:43 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊
+ test-repos/webhintio-hint/packages/hint/docs/user-guide/development-flow-integration/travis-and-azure.md:407:20 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊
+ test-repos/webhintio-hint/packages/hint/docs/user-guide/development-flow-integration/travis-and-azure.md:407:43 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊
+ test-repos/webhintio-hint/packages/hint/docs/user-guide/development-flow-integration/travis-and-azure.md:408:20 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊
+ test-repos/webhintio-hint/packages/hint/docs/user-guide/development-flow-integration/travis-and-azure.md:409:20 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊
+ test-repos/webhintio-hint/packages/hint/docs/user-guide/development-flow-integration/travis-and-azure.md:410:20 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊
+ test-repos/webhintio-hint/packages/hint/docs/user-guide/development-flow-integration/travis-and-azure.md:411:20 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊
+ test-repos/webhintio-hint/packages/hint/docs/user-guide/development-flow-integration/travis-and-azure.md:411:43 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊
+ test-repos/webhintio-hint/packages/hint/docs/user-guide/index.md:178:1 MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "nodejsdownloadcurrent"] [Context: "[NodejsDownloadCurrent]: https..."]␊
+ test-repos/webhintio-hint/packages/hint/docs/user-guide/index.md:49:1 MD060/table-column-style Table column style [Table pipe is missing space to the right for style "compact"]␊
+ test-repos/webhintio-hint/packages/hint/docs/user-guide/index.md:49:7 MD060/table-column-style Table column style [Table pipe is missing space to the right for style "compact"]␊
+ test-repos/webhintio-hint/packages/hint/docs/user-guide/troubleshoot/summary.md:137:1 MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "githubwebhintiohint308"] [Context: "[GithubWebhintioHint308]: http..."]␊
+ test-repos/webhintio-hint/packages/hint/docs/user-guide/troubleshoot/summary.md:141:1 MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "npmjspackageiltorb"] [Context: "[NpmjsPackageIltorb]: https://..."]␊
+ test-repos/webhintio-hint/packages/parser-html/README.md:51:1 MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "events"] [Context: "[events]: https://webhint.io/d..."]␊
+ test-repos/webhintio-hint/packages/utils-compat-data/README.md:65:16 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊
+ test-repos/webhintio-hint/packages/utils-compat-data/README.md:65:31 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊
+ test-repos/webhintio-hint/packages/utils-compat-data/README.md:66:31 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊
+ test-repos/webhintio-hint/packages/utils-compat-data/README.md:67:16 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊
+ test-repos/webhintio-hint/packages/utils-compat-data/README.md:67:31 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊
+ test-repos/webhintio-hint/packages/utils-compat-data/README.md:68:16 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊
+ test-repos/webhintio-hint/packages/utils-compat-data/README.md:68:31 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊
+ test-repos/webhintio-hint/packages/utils-compat-data/README.md:69:35 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊
+ test-repos/webhintio-hint/packages/utils-compat-data/README.md:70:31 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊
+ test-repos/webhintio-hint/packages/utils-compat-data/README.md:71:16 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊
+ test-repos/webhintio-hint/packages/utils-compat-data/README.md:71:31 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊
+ test-repos/webhintio-hint/packages/utils-compat-data/README.md:72:31 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊
+ test-repos/webhintio-hint/packages/utils-compat-data/README.md:73:16 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊
+ test-repos/webhintio-hint/packages/utils-compat-data/README.md:73:31 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊
+ test-repos/webhintio-hint/packages/utils-compat-data/README.md:74:16 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊
+ test-repos/webhintio-hint/packages/utils-compat-data/README.md:74:31 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊
+ test-repos/webhintio-hint/packages/utils-compat-data/README.md:75:16 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊
+ test-repos/webhintio-hint/packages/utils-compat-data/README.md:75:31 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊
+ test-repos/webhintio-hint/packages/utils-compat-data/README.md:76:31 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊
+ test-repos/webhintio-hint/packages/utils-compat-data/README.md:77:16 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊
+ test-repos/webhintio-hint/packages/utils-compat-data/README.md:77:31 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊
+ test-repos/webhintio-hint/packages/utils-compat-data/README.md:78:31 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]`
## https://github.com/webpack/webpack.js.org
diff --git a/test/snapshots/markdownlint-test-repos-small.mjs.snap b/test/snapshots/markdownlint-test-repos-small.mjs.snap
index 0851024d..2404a057 100644
Binary files a/test/snapshots/markdownlint-test-repos-small.mjs.snap and b/test/snapshots/markdownlint-test-repos-small.mjs.snap differ
diff --git a/test/snapshots/markdownlint-test-scenarios.mjs.md b/test/snapshots/markdownlint-test-scenarios.mjs.md
new file mode 100644
index 00000000..6644e949
--- /dev/null
+++ b/test/snapshots/markdownlint-test-scenarios.mjs.md
@@ -0,0 +1,72814 @@
+# Snapshot report for `test/markdownlint-test-scenarios.mjs`
+
+The actual snapshot is saved in `markdownlint-test-scenarios.mjs.snap`.
+
+Generated by [AVA](https://avajs.dev).
+
+## 4-tabs-MD010.md
+
+> Snapshot 1
+
+ {
+ errors: [
+ {
+ errorContext: null,
+ errorDetail: 'Column: 1',
+ errorRange: [
+ 1,
+ 13,
+ ],
+ fixInfo: {
+ deleteCount: 13,
+ editColumn: 1,
+ insertText: ' ',
+ },
+ lineNumber: 1,
+ ruleDescription: 'Hard tabs',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md010.md',
+ ruleNames: [
+ 'MD010',
+ 'no-hard-tabs',
+ ],
+ },
+ {
+ errorContext: null,
+ errorDetail: 'Column: 5',
+ errorRange: [
+ 5,
+ 2,
+ ],
+ fixInfo: {
+ deleteCount: 2,
+ editColumn: 5,
+ insertText: ' ',
+ },
+ lineNumber: 2,
+ ruleDescription: 'Hard tabs',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md010.md',
+ ruleNames: [
+ 'MD010',
+ 'no-hard-tabs',
+ ],
+ },
+ {
+ errorContext: null,
+ errorDetail: 'Column: 35',
+ errorRange: [
+ 35,
+ 3,
+ ],
+ fixInfo: {
+ deleteCount: 3,
+ editColumn: 35,
+ insertText: ' ',
+ },
+ lineNumber: 3,
+ ruleDescription: 'Hard tabs',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md010.md',
+ ruleNames: [
+ 'MD010',
+ 'no-hard-tabs',
+ ],
+ },
+ ],
+ fixed: ` text {MD010}␊
+ text and text 2 {MD010}␊
+ texts with trailing spaces {MD010} ␊
+ ␊
+ ␊
+ `,
+ }
+
+## MD001-MD010.md
+
+> Snapshot 1
+
+ {
+ errors: [
+ {
+ errorContext: null,
+ errorDetail: 'Expected: h3; Actual: h4',
+ errorRange: null,
+ fixInfo: null,
+ lineNumber: 3,
+ ruleDescription: 'Heading levels should only increment by one level at a time',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md001.md',
+ ruleNames: [
+ 'MD001',
+ 'heading-increment',
+ ],
+ },
+ {
+ errorContext: null,
+ errorDetail: 'Expected: atx; Actual: atx_closed',
+ errorRange: null,
+ fixInfo: null,
+ lineNumber: 5,
+ ruleDescription: 'Heading style',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md003.md',
+ ruleNames: [
+ 'MD003',
+ 'heading-style',
+ ],
+ },
+ {
+ errorContext: null,
+ errorDetail: 'Expected: asterisk; Actual: dash',
+ errorRange: [
+ 1,
+ 1,
+ ],
+ fixInfo: {
+ deleteCount: 1,
+ editColumn: 1,
+ insertText: '*',
+ },
+ lineNumber: 10,
+ ruleDescription: 'Unordered list style',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md004.md',
+ ruleNames: [
+ 'MD004',
+ 'ul-style',
+ ],
+ },
+ {
+ errorContext: null,
+ errorDetail: 'Expected: 0; Actual: 1',
+ errorRange: [
+ 1,
+ 3,
+ ],
+ fixInfo: null,
+ lineNumber: 8,
+ ruleDescription: 'Inconsistent indentation for list items at the same level',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md005.md',
+ ruleNames: [
+ 'MD005',
+ 'list-indent',
+ ],
+ },
+ {
+ errorContext: null,
+ errorDetail: 'Expected: 1; Actual: 0',
+ errorRange: [
+ 1,
+ 3,
+ ],
+ fixInfo: {
+ deleteCount: 0,
+ editColumn: 1,
+ insertText: ' ',
+ },
+ lineNumber: 23,
+ ruleDescription: 'Inconsistent indentation for list items at the same level',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md005.md',
+ ruleNames: [
+ 'MD005',
+ 'list-indent',
+ ],
+ },
+ {
+ errorContext: null,
+ errorDetail: 'Expected: (3); Actual: (4)',
+ errorRange: [
+ 1,
+ 5,
+ ],
+ fixInfo: {
+ deleteCount: 1,
+ editColumn: 1,
+ insertText: '',
+ },
+ lineNumber: 29,
+ ruleDescription: 'Inconsistent indentation for list items at the same level',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md005.md',
+ ruleNames: [
+ 'MD005',
+ 'list-indent',
+ ],
+ },
+ {
+ errorContext: null,
+ errorDetail: 'Expected: 0; Actual: 1',
+ errorRange: [
+ 1,
+ 3,
+ ],
+ fixInfo: {
+ deleteCount: 1,
+ editColumn: 1,
+ insertText: '',
+ },
+ lineNumber: 8,
+ ruleDescription: 'Unordered list indentation',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md007.md',
+ ruleNames: [
+ 'MD007',
+ 'ul-indent',
+ ],
+ },
+ {
+ errorContext: null,
+ errorDetail: 'Expected: 0; Actual: 1',
+ errorRange: [
+ 1,
+ 3,
+ ],
+ fixInfo: {
+ deleteCount: 1,
+ editColumn: 1,
+ insertText: '',
+ },
+ lineNumber: 12,
+ ruleDescription: 'Unordered list indentation',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md007.md',
+ ruleNames: [
+ 'MD007',
+ 'ul-indent',
+ ],
+ },
+ {
+ errorContext: null,
+ errorDetail: 'Expected: 0; Actual: 1',
+ errorRange: [
+ 1,
+ 3,
+ ],
+ fixInfo: {
+ deleteCount: 1,
+ editColumn: 1,
+ insertText: '',
+ },
+ lineNumber: 13,
+ ruleDescription: 'Unordered list indentation',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md007.md',
+ ruleNames: [
+ 'MD007',
+ 'ul-indent',
+ ],
+ },
+ {
+ errorContext: null,
+ errorDetail: 'Expected: 0 or 2; Actual: 1',
+ errorRange: [
+ 13,
+ 1,
+ ],
+ fixInfo: {
+ deleteCount: 1,
+ editColumn: 13,
+ },
+ lineNumber: 15,
+ ruleDescription: 'Trailing spaces',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md009.md',
+ ruleNames: [
+ 'MD009',
+ 'no-trailing-spaces',
+ ],
+ },
+ {
+ errorContext: null,
+ errorDetail: 'Column: 5',
+ errorRange: [
+ 5,
+ 1,
+ ],
+ fixInfo: {
+ deleteCount: 1,
+ editColumn: 5,
+ insertText: ' ',
+ },
+ lineNumber: 17,
+ ruleDescription: 'Hard tabs',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md010.md',
+ ruleNames: [
+ 'MD010',
+ 'no-hard-tabs',
+ ],
+ },
+ ],
+ fixed: `## One␊
+ ␊
+ #### Two {MD001}␊
+ ␊
+ ### Three {MD003} ###␊
+ ␊
+ * Alpha␊
+ * Bravo {MD005} {MD007}␊
+ ␊
+ * Charlie {MD004}␊
+ ␊
+ * Delta {MD007}␊
+ * Echo {MD007}␊
+ ␊
+ Text {MD009}␊
+ ␊
+ Text text {MD010}␊
+ ␊
+ 1. One␊
+ 2. Two␊
+ 3. Three␊
+ 4. Four␊
+ 5. Five {MD005}␊
+ 6. Six␊
+ 7. Seven␊
+ 8. Eight␊
+ 9. Nine␊
+ 10. Ten␊
+ 11. Eleven {MD005}␊
+ 12. Twelve␊
+ ␊
+ ␊
+ `,
+ }
+
+## MD011-MD021.md
+
+> Snapshot 1
+
+ {
+ errors: [
+ {
+ errorContext: null,
+ errorDetail: '(reversed)[link]',
+ errorRange: [
+ 3,
+ 16,
+ ],
+ fixInfo: {
+ deleteCount: 16,
+ editColumn: 3,
+ insertText: '[reversed](link)',
+ },
+ lineNumber: 5,
+ ruleDescription: 'Reversed link syntax',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md011.md',
+ ruleNames: [
+ 'MD011',
+ 'no-reversed-links',
+ ],
+ },
+ {
+ errorContext: null,
+ errorDetail: '(reversed)[link]',
+ errorRange: [
+ 11,
+ 16,
+ ],
+ fixInfo: {
+ deleteCount: 16,
+ editColumn: 11,
+ insertText: '[reversed](link)',
+ },
+ lineNumber: 26,
+ ruleDescription: 'Reversed link syntax',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md011.md',
+ ruleNames: [
+ 'MD011',
+ 'no-reversed-links',
+ ],
+ },
+ {
+ errorContext: null,
+ errorDetail: 'Expected: 1; Actual: 2',
+ errorRange: null,
+ fixInfo: {
+ deleteCount: -1,
+ },
+ lineNumber: 7,
+ ruleDescription: 'Multiple consecutive blank lines',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md012.md',
+ ruleNames: [
+ 'MD012',
+ 'no-multiple-blanks',
+ ],
+ },
+ {
+ errorContext: null,
+ errorDetail: 'Expected: 80; Actual: 99',
+ errorRange: [
+ 81,
+ 19,
+ ],
+ fixInfo: null,
+ lineNumber: 8,
+ ruleDescription: 'Line length',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md013.md',
+ ruleNames: [
+ 'MD013',
+ 'line-length',
+ ],
+ },
+ {
+ errorContext: null,
+ errorDetail: 'Expected: 40; Actual: 62',
+ errorRange: [
+ 41,
+ 22,
+ ],
+ fixInfo: null,
+ lineNumber: 10,
+ ruleDescription: 'Line length',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md013.md',
+ ruleNames: [
+ 'MD013',
+ 'line-length',
+ ],
+ },
+ {
+ errorContext: '$ command with no output {MD01...',
+ errorDetail: null,
+ errorRange: [
+ 5,
+ 2,
+ ],
+ fixInfo: {
+ deleteCount: 2,
+ editColumn: 5,
+ },
+ lineNumber: 12,
+ ruleDescription: 'Dollar signs used before commands without showing output',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md014.md',
+ ruleNames: [
+ 'MD014',
+ 'commands-show-output',
+ ],
+ },
+ {
+ errorContext: '##No space A {MD018}',
+ errorDetail: null,
+ errorRange: [
+ 1,
+ 3,
+ ],
+ fixInfo: {
+ editColumn: 3,
+ insertText: ' ',
+ },
+ lineNumber: 14,
+ ruleDescription: 'No space after hash on atx style heading',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md018.md',
+ ruleNames: [
+ 'MD018',
+ 'no-missing-space-atx',
+ ],
+ },
+ {
+ errorContext: '## Multiple spaces B {MD019}',
+ errorDetail: null,
+ errorRange: [
+ 4,
+ 1,
+ ],
+ fixInfo: {
+ deleteCount: 1,
+ editColumn: 4,
+ },
+ lineNumber: 16,
+ ruleDescription: 'Multiple spaces after hash on atx style heading',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md019.md',
+ ruleNames: [
+ 'MD019',
+ 'no-multiple-space-atx',
+ ],
+ },
+ {
+ errorContext: '##No space C {MD020} ##',
+ errorDetail: null,
+ errorRange: [
+ 1,
+ 3,
+ ],
+ fixInfo: {
+ deleteCount: 23,
+ editColumn: 1,
+ insertText: '## No space C {MD020} ##',
+ },
+ lineNumber: 18,
+ ruleDescription: 'No space inside hashes on closed atx style heading',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md020.md',
+ ruleNames: [
+ 'MD020',
+ 'no-missing-space-closed-atx',
+ ],
+ },
+ {
+ errorContext: '## No space D {MD020}##',
+ errorDetail: null,
+ errorRange: [
+ 21,
+ 3,
+ ],
+ fixInfo: {
+ deleteCount: 23,
+ editColumn: 1,
+ insertText: '## No space D {MD020} ##',
+ },
+ lineNumber: 20,
+ ruleDescription: 'No space inside hashes on closed atx style heading',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md020.md',
+ ruleNames: [
+ 'MD020',
+ 'no-missing-space-closed-atx',
+ ],
+ },
+ {
+ errorContext: '## Multiple spaces E {MD021} ...',
+ errorDetail: null,
+ errorRange: [
+ 4,
+ 1,
+ ],
+ fixInfo: {
+ deleteCount: 1,
+ editColumn: 4,
+ },
+ lineNumber: 22,
+ ruleDescription: 'Multiple spaces inside hashes on closed atx style heading',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md021.md',
+ ruleNames: [
+ 'MD021',
+ 'no-multiple-space-closed-atx',
+ ],
+ },
+ {
+ errorContext: '... Multiple spaces F {MD021} ##',
+ errorDetail: null,
+ errorRange: [
+ 30,
+ 1,
+ ],
+ fixInfo: {
+ deleteCount: 1,
+ editColumn: 30,
+ },
+ lineNumber: 24,
+ ruleDescription: 'Multiple spaces inside hashes on closed atx style heading',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md021.md',
+ ruleNames: [
+ 'MD021',
+ 'no-multiple-space-closed-atx',
+ ],
+ },
+ ],
+ fixed: `# Top level heading␊
+ ␊
+ ␊
+ ␊
+ A [reversed](link) example. {MD011}␊
+ ␊
+ 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789␊
+ ␊
+ ## 123456789 123456789 123456789 123456789 123456789 123456789␊
+ ␊
+ command with no output {MD014}␊
+ ␊
+ ## No space A {MD018}␊
+ ␊
+ ## Multiple spaces B {MD019}␊
+ ␊
+ ## No space C {MD020} ##␊
+ ␊
+ ## No space D {MD020} ##␊
+ ␊
+ ## Multiple spaces E {MD021} ##␊
+ ␊
+ ## Multiple spaces F {MD021} ##␊
+ ␊
+ *Another* [reversed](link) example. {MD011}␊
+ ␊
+ {MD012:7} {MD013:8} {MD013:10}␊
+ ␊
+ ␊
+ `,
+ }
+
+## MD022-MD030.md
+
+> Snapshot 1
+
+ {
+ errors: [
+ {
+ errorContext: '# Heading',
+ errorDetail: 'Expected: 1; Actual: 0; Below',
+ errorRange: null,
+ fixInfo: {
+ insertText: `␊
+ `,
+ lineNumber: 2,
+ },
+ lineNumber: 1,
+ ruleDescription: 'Headings should be surrounded by blank lines',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md022.md',
+ ruleNames: [
+ 'MD022',
+ 'blanks-around-headings',
+ ],
+ },
+ {
+ errorContext: ' # Heading',
+ errorDetail: null,
+ errorRange: [
+ 1,
+ 1,
+ ],
+ fixInfo: {
+ deleteCount: 1,
+ editColumn: 1,
+ },
+ lineNumber: 1,
+ ruleDescription: 'Headings must start at the beginning of the line',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md023.md',
+ ruleNames: [
+ 'MD023',
+ 'heading-start-left',
+ ],
+ },
+ {
+ errorContext: 'Heading',
+ errorDetail: null,
+ errorRange: null,
+ fixInfo: null,
+ lineNumber: 4,
+ ruleDescription: 'Multiple headings with the same content',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md024.md',
+ ruleNames: [
+ 'MD024',
+ 'no-duplicate-heading',
+ ],
+ },
+ {
+ errorContext: 'Heading',
+ errorDetail: null,
+ errorRange: null,
+ fixInfo: null,
+ lineNumber: 4,
+ ruleDescription: 'Multiple top-level headings in the same document',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md025.md',
+ ruleNames: [
+ 'MD025',
+ 'single-title',
+ 'single-h1',
+ ],
+ },
+ {
+ errorContext: null,
+ errorDetail: 'Punctuation: \'.\'',
+ errorRange: [
+ 27,
+ 1,
+ ],
+ fixInfo: {
+ deleteCount: 1,
+ editColumn: 27,
+ },
+ lineNumber: 6,
+ ruleDescription: 'Trailing punctuation in heading',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md026.md',
+ ruleNames: [
+ 'MD026',
+ 'no-trailing-punctuation',
+ ],
+ },
+ {
+ errorContext: '> Multiple spaces {MD027}',
+ errorDetail: null,
+ errorRange: [
+ 3,
+ 1,
+ ],
+ fixInfo: {
+ deleteCount: 1,
+ editColumn: 3,
+ },
+ lineNumber: 8,
+ ruleDescription: 'Multiple spaces after blockquote symbol',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md027.md',
+ ruleNames: [
+ 'MD027',
+ 'no-multiple-space-blockquote',
+ ],
+ },
+ {
+ errorContext: '> > Multiple spaces, multiple...',
+ errorDetail: null,
+ errorRange: [
+ 5,
+ 1,
+ ],
+ fixInfo: {
+ deleteCount: 1,
+ editColumn: 5,
+ },
+ lineNumber: 15,
+ ruleDescription: 'Multiple spaces after blockquote symbol',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md027.md',
+ ruleNames: [
+ 'MD027',
+ 'no-multiple-space-blockquote',
+ ],
+ },
+ {
+ errorContext: '> > > Multiple spaces, multip...',
+ errorDetail: null,
+ errorRange: [
+ 7,
+ 1,
+ ],
+ fixInfo: {
+ deleteCount: 1,
+ editColumn: 7,
+ },
+ lineNumber: 17,
+ ruleDescription: 'Multiple spaces after blockquote symbol',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md027.md',
+ ruleNames: [
+ 'MD027',
+ 'no-multiple-space-blockquote',
+ ],
+ },
+ {
+ errorContext: '> > > Multiple spaces, multip...',
+ errorDetail: null,
+ errorRange: [
+ 3,
+ 1,
+ ],
+ fixInfo: {
+ deleteCount: 1,
+ editColumn: 3,
+ },
+ lineNumber: 19,
+ ruleDescription: 'Multiple spaces after blockquote symbol',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md027.md',
+ ruleNames: [
+ 'MD027',
+ 'no-multiple-space-blockquote',
+ ],
+ },
+ {
+ errorContext: null,
+ errorDetail: null,
+ errorRange: null,
+ fixInfo: null,
+ lineNumber: 9,
+ ruleDescription: 'Blank line inside blockquote',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md028.md',
+ ruleNames: [
+ 'MD028',
+ 'no-blanks-blockquote',
+ ],
+ },
+ {
+ errorContext: null,
+ errorDetail: 'Expected: 2; Actual: 3; Style: 1/2/3',
+ errorRange: [
+ 1,
+ 4,
+ ],
+ fixInfo: {
+ deleteCount: 1,
+ editColumn: 1,
+ insertText: '2',
+ },
+ lineNumber: 13,
+ ruleDescription: 'Ordered list item prefix',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md029.md',
+ ruleNames: [
+ 'MD029',
+ 'ol-prefix',
+ ],
+ },
+ {
+ errorContext: null,
+ errorDetail: 'Expected: 1; Actual: 2',
+ errorRange: [
+ 1,
+ 4,
+ ],
+ fixInfo: {
+ deleteCount: 2,
+ editColumn: 3,
+ insertText: ' ',
+ },
+ lineNumber: 13,
+ ruleDescription: 'Spaces after list markers',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md030.md',
+ ruleNames: [
+ 'MD030',
+ 'list-marker-space',
+ ],
+ },
+ ],
+ fixed: `# Heading␊
+ ␊
+ Text␊
+ ␊
+ # Heading␊
+ ␊
+ ## Another heading {MD026}␊
+ ␊
+ > Multiple spaces {MD027}␊
+ ␊
+ > Blank line above␊
+ ␊
+ 1. Alpha␊
+ 2. Beta {MD029} {MD030}␊
+ ␊
+ > > Multiple spaces, multiple blockquotes {MD027}␊
+ > >␊
+ > > > Multiple spaces, multiple blockquotes {MD027}␊
+ > > >␊
+ > > > Multiple spaces, multiple blockquotes {MD027}␊
+ ␊
+ {MD022:1} {MD023:1} {MD024:4} {MD025:4} {MD028:9}␊
+ `,
+ }
+
+## MD030-warning-message.md
+
+> Snapshot 1
+
+ {
+ errors: [
+ {
+ errorContext: null,
+ errorDetail: 'Expected: 1; Actual: 2',
+ errorRange: [
+ 1,
+ 3,
+ ],
+ fixInfo: {
+ deleteCount: 2,
+ editColumn: 2,
+ insertText: ' ',
+ },
+ lineNumber: 19,
+ ruleDescription: 'Spaces after list markers',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md030.md',
+ ruleNames: [
+ 'MD030',
+ 'list-marker-space',
+ ],
+ },
+ {
+ errorContext: null,
+ errorDetail: 'Expected: 1; Actual: 2',
+ errorRange: [
+ 1,
+ 4,
+ ],
+ fixInfo: {
+ deleteCount: 2,
+ editColumn: 3,
+ insertText: ' ',
+ },
+ lineNumber: 21,
+ ruleDescription: 'Spaces after list markers',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md030.md',
+ ruleNames: [
+ 'MD030',
+ 'list-marker-space',
+ ],
+ },
+ {
+ errorContext: '-',
+ errorDetail: null,
+ errorRange: null,
+ fixInfo: {
+ insertText: `␊
+ `,
+ lineNumber: 4,
+ },
+ lineNumber: 3,
+ ruleDescription: 'Lists should be surrounded by blank lines',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md032.md',
+ ruleNames: [
+ 'MD032',
+ 'blanks-around-lists',
+ ],
+ },
+ {
+ errorContext: '1.',
+ errorDetail: null,
+ errorRange: null,
+ fixInfo: {
+ insertText: `␊
+ `,
+ lineNumber: 7,
+ },
+ lineNumber: 6,
+ ruleDescription: 'Lists should be surrounded by blank lines',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md032.md',
+ ruleNames: [
+ 'MD032',
+ 'blanks-around-lists',
+ ],
+ },
+ ],
+ fixed: `#␊
+ ␊
+ -␊
+ ␊
+ (bare list item marker {MD032:3})␊
+ ␊
+ 1.␊
+ ␊
+ (bare list item marker {MD032:6})␊
+ ␊
+ -a␊
+ (not a list item)␊
+ ␊
+ 1.a␊
+ (not a list item)␊
+ ␊
+ - a␊
+ ␊
+ 1. a␊
+ ␊
+ - a {MD030}␊
+ ␊
+ 1. a {MD030}␊
+ `,
+ }
+
+## MD031-MD040.md
+
+> Snapshot 1
+
+ {
+ errors: [
+ {
+ errorContext: '```',
+ errorDetail: null,
+ errorRange: null,
+ fixInfo: {
+ insertText: `␊
+ `,
+ lineNumber: 4,
+ },
+ lineNumber: 3,
+ ruleDescription: 'Fenced code blocks should be surrounded by blank lines',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md031.md',
+ ruleNames: [
+ 'MD031',
+ 'blanks-around-fences',
+ ],
+ },
+ {
+ errorContext: '* List {MD032}',
+ errorDetail: null,
+ errorRange: null,
+ fixInfo: {
+ insertText: `␊
+ `,
+ },
+ lineNumber: 4,
+ ruleDescription: 'Lists should be surrounded by blank lines',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md032.md',
+ ruleNames: [
+ 'MD032',
+ 'blanks-around-lists',
+ ],
+ },
+ {
+ errorContext: '* List {MD032}',
+ errorDetail: null,
+ errorRange: null,
+ fixInfo: {
+ insertText: `␊
+ `,
+ lineNumber: 48,
+ },
+ lineNumber: 47,
+ ruleDescription: 'Lists should be surrounded by blank lines',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md032.md',
+ ruleNames: [
+ 'MD032',
+ 'blanks-around-lists',
+ ],
+ },
+ {
+ errorContext: null,
+ errorDetail: 'Element: hr',
+ errorRange: [
+ 7,
+ 5,
+ ],
+ fixInfo: null,
+ lineNumber: 6,
+ ruleDescription: 'Inline HTML',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md033.md',
+ ruleNames: [
+ 'MD033',
+ 'no-inline-html',
+ ],
+ },
+ {
+ errorContext: 'https://example.com',
+ errorDetail: null,
+ errorRange: [
+ 6,
+ 19,
+ ],
+ fixInfo: {
+ deleteCount: 19,
+ editColumn: 6,
+ insertText: '',
+ },
+ lineNumber: 8,
+ ruleDescription: 'Bare URL used',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md034.md',
+ ruleNames: [
+ 'MD034',
+ 'no-bare-urls',
+ ],
+ },
+ {
+ errorContext: null,
+ errorDetail: 'Expected: ---; Actual: ***',
+ errorRange: null,
+ fixInfo: null,
+ lineNumber: 11,
+ ruleDescription: 'Horizontal rule style',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md035.md',
+ ruleNames: [
+ 'MD035',
+ 'hr-style',
+ ],
+ },
+ {
+ errorContext: 'Emphasis {MD036}',
+ errorDetail: null,
+ errorRange: null,
+ fixInfo: null,
+ lineNumber: 13,
+ ruleDescription: 'Emphasis used instead of a heading',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md036.md',
+ ruleNames: [
+ 'MD036',
+ 'no-emphasis-as-heading',
+ ],
+ },
+ {
+ errorContext: '* i',
+ errorDetail: null,
+ errorRange: [
+ 8,
+ 1,
+ ],
+ fixInfo: {
+ deleteCount: 1,
+ editColumn: 8,
+ },
+ lineNumber: 15,
+ ruleDescription: 'Spaces inside emphasis markers',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md037.md',
+ ruleNames: [
+ 'MD037',
+ 'no-space-in-emphasis',
+ ],
+ },
+ {
+ errorContext: 'e *',
+ errorDetail: null,
+ errorRange: [
+ 15,
+ 1,
+ ],
+ fixInfo: {
+ deleteCount: 1,
+ editColumn: 15,
+ },
+ lineNumber: 15,
+ ruleDescription: 'Spaces inside emphasis markers',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md037.md',
+ ruleNames: [
+ 'MD037',
+ 'no-space-in-emphasis',
+ ],
+ },
+ {
+ errorContext: '* s',
+ errorDetail: null,
+ errorRange: [
+ 18,
+ 1,
+ ],
+ fixInfo: {
+ deleteCount: 1,
+ editColumn: 18,
+ },
+ lineNumber: 31,
+ ruleDescription: 'Spaces inside emphasis markers',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md037.md',
+ ruleNames: [
+ 'MD037',
+ 'no-space-in-emphasis',
+ ],
+ },
+ {
+ errorContext: 'e *',
+ errorDetail: null,
+ errorRange: [
+ 22,
+ 1,
+ ],
+ fixInfo: {
+ deleteCount: 1,
+ editColumn: 22,
+ },
+ lineNumber: 32,
+ ruleDescription: 'Spaces inside emphasis markers',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md037.md',
+ ruleNames: [
+ 'MD037',
+ 'no-space-in-emphasis',
+ ],
+ },
+ {
+ errorContext: 'e **',
+ errorDetail: null,
+ errorRange: [
+ 23,
+ 1,
+ ],
+ fixInfo: {
+ deleteCount: 1,
+ editColumn: 23,
+ },
+ lineNumber: 33,
+ ruleDescription: 'Spaces inside emphasis markers',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md037.md',
+ ruleNames: [
+ 'MD037',
+ 'no-space-in-emphasis',
+ ],
+ },
+ {
+ errorContext: '_ s',
+ errorDetail: null,
+ errorRange: [
+ 18,
+ 1,
+ ],
+ fixInfo: {
+ deleteCount: 1,
+ editColumn: 18,
+ },
+ lineNumber: 34,
+ ruleDescription: 'Spaces inside emphasis markers',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md037.md',
+ ruleNames: [
+ 'MD037',
+ 'no-space-in-emphasis',
+ ],
+ },
+ {
+ errorContext: '__ s',
+ errorDetail: null,
+ errorRange: [
+ 21,
+ 1,
+ ],
+ fixInfo: {
+ deleteCount: 1,
+ editColumn: 21,
+ },
+ lineNumber: 35,
+ ruleDescription: 'Spaces inside emphasis markers',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md037.md',
+ ruleNames: [
+ 'MD037',
+ 'no-space-in-emphasis',
+ ],
+ },
+ {
+ errorContext: 'e __',
+ errorDetail: null,
+ errorRange: [
+ 26,
+ 1,
+ ],
+ fixInfo: {
+ deleteCount: 1,
+ editColumn: 26,
+ },
+ lineNumber: 35,
+ ruleDescription: 'Spaces inside emphasis markers',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md037.md',
+ ruleNames: [
+ 'MD037',
+ 'no-space-in-emphasis',
+ ],
+ },
+ {
+ errorContext: '* i',
+ errorDetail: null,
+ errorRange: [
+ 8,
+ 1,
+ ],
+ fixInfo: {
+ deleteCount: 1,
+ editColumn: 8,
+ },
+ lineNumber: 62,
+ ruleDescription: 'Spaces inside emphasis markers',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md037.md',
+ ruleNames: [
+ 'MD037',
+ 'no-space-in-emphasis',
+ ],
+ },
+ {
+ errorContext: 'e *',
+ errorDetail: null,
+ errorRange: [
+ 11,
+ 1,
+ ],
+ fixInfo: {
+ deleteCount: 1,
+ editColumn: 11,
+ },
+ lineNumber: 63,
+ ruleDescription: 'Spaces inside emphasis markers',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md037.md',
+ ruleNames: [
+ 'MD037',
+ 'no-space-in-emphasis',
+ ],
+ },
+ {
+ errorContext: '` inside`',
+ errorDetail: null,
+ errorRange: [
+ 8,
+ 1,
+ ],
+ fixInfo: {
+ deleteCount: 1,
+ editColumn: 8,
+ },
+ lineNumber: 17,
+ ruleDescription: 'Spaces inside code span elements',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md038.md',
+ ruleNames: [
+ 'MD038',
+ 'no-space-in-code',
+ ],
+ },
+ {
+ errorContext: '`` inside``',
+ errorDetail: null,
+ errorRange: [
+ 9,
+ 1,
+ ],
+ fixInfo: {
+ deleteCount: 1,
+ editColumn: 9,
+ },
+ lineNumber: 24,
+ ruleDescription: 'Spaces inside code span elements',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md038.md',
+ ruleNames: [
+ 'MD038',
+ 'no-space-in-code',
+ ],
+ },
+ {
+ errorContext: '` code`',
+ errorDetail: null,
+ errorRange: [
+ 20,
+ 1,
+ ],
+ fixInfo: {
+ deleteCount: 1,
+ editColumn: 20,
+ },
+ lineNumber: 25,
+ ruleDescription: 'Spaces inside code span elements',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md038.md',
+ ruleNames: [
+ 'MD038',
+ 'no-space-in-code',
+ ],
+ },
+ {
+ errorContext: '` elements`',
+ errorDetail: null,
+ errorRange: [
+ 27,
+ 1,
+ ],
+ fixInfo: {
+ deleteCount: 1,
+ editColumn: 27,
+ },
+ lineNumber: 26,
+ ruleDescription: 'Spaces inside code span elements',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md038.md',
+ ruleNames: [
+ 'MD038',
+ 'no-space-in-code',
+ ],
+ },
+ {
+ errorContext: '`` code``',
+ errorDetail: null,
+ errorRange: [
+ 23,
+ 1,
+ ],
+ fixInfo: {
+ deleteCount: 1,
+ editColumn: 23,
+ },
+ lineNumber: 27,
+ ruleDescription: 'Spaces inside code span elements',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md038.md',
+ ruleNames: [
+ 'MD038',
+ 'no-space-in-code',
+ ],
+ },
+ {
+ errorContext: '`` ` embedded backtick``',
+ errorDetail: null,
+ errorRange: [
+ 3,
+ 1,
+ ],
+ fixInfo: {
+ deleteCount: 1,
+ editColumn: 3,
+ },
+ lineNumber: 28,
+ ruleDescription: 'Spaces inside code span elements',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md038.md',
+ ruleNames: [
+ 'MD038',
+ 'no-space-in-code',
+ ],
+ },
+ {
+ errorContext: '``embedded backtick` ``',
+ errorDetail: null,
+ errorRange: [
+ 22,
+ 1,
+ ],
+ fixInfo: {
+ deleteCount: 1,
+ editColumn: 22,
+ },
+ lineNumber: 29,
+ ruleDescription: 'Spaces inside code span elements',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md038.md',
+ ruleNames: [
+ 'MD038',
+ 'no-space-in-code',
+ ],
+ },
+ {
+ errorContext: '` code {MD038} span`',
+ errorDetail: null,
+ errorRange: [
+ 7,
+ 1,
+ ],
+ fixInfo: {
+ deleteCount: 1,
+ editColumn: 7,
+ },
+ lineNumber: 38,
+ ruleDescription: 'Spaces inside code span elements',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md038.md',
+ ruleNames: [
+ 'MD038',
+ 'no-space-in-code',
+ ],
+ },
+ {
+ errorContext: '`code span `',
+ errorDetail: null,
+ errorRange: [
+ 5,
+ 2,
+ ],
+ fixInfo: {
+ deleteCount: 2,
+ editColumn: 5,
+ },
+ lineNumber: 44,
+ ruleDescription: 'Spaces inside code span elements',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md038.md',
+ ruleNames: [
+ 'MD038',
+ 'no-space-in-code',
+ ],
+ },
+ {
+ errorContext: '...``code span code span code ```',
+ errorDetail: null,
+ errorRange: [
+ 10,
+ 1,
+ ],
+ fixInfo: {
+ deleteCount: 1,
+ editColumn: 10,
+ },
+ lineNumber: 53,
+ ruleDescription: 'Spaces inside code span elements',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md038.md',
+ ruleNames: [
+ 'MD038',
+ 'no-space-in-code',
+ ],
+ },
+ {
+ errorContext: '```` code {MD038} span code sp...',
+ errorDetail: null,
+ errorRange: [
+ 15,
+ 1,
+ ],
+ fixInfo: {
+ deleteCount: 1,
+ editColumn: 15,
+ },
+ lineNumber: 55,
+ ruleDescription: 'Spaces inside code span elements',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md038.md',
+ ruleNames: [
+ 'MD038',
+ 'no-space-in-code',
+ ],
+ },
+ {
+ errorContext: '[ inside ]',
+ errorDetail: null,
+ errorRange: [
+ 8,
+ 1,
+ ],
+ fixInfo: {
+ deleteCount: 1,
+ editColumn: 8,
+ },
+ lineNumber: 19,
+ ruleDescription: 'Spaces inside link text',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md039.md',
+ ruleNames: [
+ 'MD039',
+ 'no-space-in-links',
+ ],
+ },
+ {
+ errorContext: '[ inside ]',
+ errorDetail: null,
+ errorRange: [
+ 15,
+ 1,
+ ],
+ fixInfo: {
+ deleteCount: 1,
+ editColumn: 15,
+ },
+ lineNumber: 19,
+ ruleDescription: 'Spaces inside link text',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md039.md',
+ ruleNames: [
+ 'MD039',
+ 'no-space-in-links',
+ ],
+ },
+ {
+ errorContext: '[ space]',
+ errorDetail: null,
+ errorRange: [
+ 7,
+ 1,
+ ],
+ fixInfo: {
+ deleteCount: 1,
+ editColumn: 7,
+ },
+ lineNumber: 60,
+ ruleDescription: 'Spaces inside link text',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md039.md',
+ ruleNames: [
+ 'MD039',
+ 'no-space-in-links',
+ ],
+ },
+ {
+ errorContext: '[space ]',
+ errorDetail: null,
+ errorRange: [
+ 32,
+ 1,
+ ],
+ fixInfo: {
+ deleteCount: 1,
+ editColumn: 32,
+ },
+ lineNumber: 60,
+ ruleDescription: 'Spaces inside link text',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md039.md',
+ ruleNames: [
+ 'MD039',
+ 'no-space-in-links',
+ ],
+ },
+ {
+ errorContext: '[ space ]',
+ errorDetail: null,
+ errorRange: [
+ 47,
+ 1,
+ ],
+ fixInfo: {
+ deleteCount: 1,
+ editColumn: 47,
+ },
+ lineNumber: 60,
+ ruleDescription: 'Spaces inside link text',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md039.md',
+ ruleNames: [
+ 'MD039',
+ 'no-space-in-links',
+ ],
+ },
+ {
+ errorContext: '[ space ]',
+ errorDetail: null,
+ errorRange: [
+ 53,
+ 1,
+ ],
+ fixInfo: {
+ deleteCount: 1,
+ editColumn: 53,
+ },
+ lineNumber: 60,
+ ruleDescription: 'Spaces inside link text',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md039.md',
+ ruleNames: [
+ 'MD039',
+ 'no-space-in-links',
+ ],
+ },
+ {
+ errorContext: '```',
+ errorDetail: null,
+ errorRange: null,
+ fixInfo: null,
+ lineNumber: 21,
+ ruleDescription: 'Fenced code blocks should have a language specified',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md040.md',
+ ruleNames: [
+ 'MD040',
+ 'fenced-code-language',
+ ],
+ },
+ ],
+ fixed: `\`\`\`js␊
+ debugger;␊
+ \`\`\`␊
+ ␊
+ * List {MD032}␊
+ ␊
+ InlineHTML {MD033}␊
+ ␊
+ Bare link {MD034}␊
+ ␊
+ ---␊
+ ***␊
+ ␊
+ *Emphasis {MD036}*␊
+ ␊
+ Space *inside* emphasis {MD037}␊
+ ␊
+ Space \`inside\` code span {MD038}␊
+ ␊
+ Space [inside](link) text {MD039}␊
+ ␊
+ \`\`\`␊
+ \`\`\`␊
+ ␊
+ space \`\`inside\`\` code {MD038}␊
+ space \`inside\` of \`code\` elements {MD038}␊
+ \`space\` inside \`of\` code \`elements\` {MD038}␊
+ space \`\`inside\`\` of \`\`code\`\` elements {MD038}␊
+ \`\` \` embedded backtick\`\` {MD038}␊
+ \`\`embedded backtick\` \`\` {MD038}␊
+ ␊
+ some *space* in *some* emphasis {MD037}␊
+ some *space* in *some* emphasis {MD037}␊
+ some *space* in **some** emphasis {MD037}␊
+ some _space_ in _some_ emphasis {MD037}␊
+ some __space__ in __some__ emphasis {MD037}␊
+ ␊
+ Text␊
+ text \`code {MD038}␊
+ span\` text␊
+ text.␊
+ ␊
+ Text␊
+ text \`code␊
+ span\` text {MD038}␊
+ text.␊
+ ␊
+ * List {MD032}␊
+ ␊
+ ---␊
+ ␊
+ Text␊
+ text \`\`\`code␊
+ span code␊
+ span code\`\`\` text {MD038}␊
+ text␊
+ text text \`\`\`\`code {MD038}␊
+ span code␊
+ span\`\`\`\` text␊
+ text.␊
+ ␊
+ Text [space](link) text [space](link) text [space](link) text. {MD039}␊
+ ␊
+ Space *inside {MD037}␊
+ multi-line* emphasis. {MD037}␊
+ ␊
+ {MD031:3} {MD035:11} {MD040:21}␊
+ ␊
+ ␊
+ `,
+ }
+
+## MD041-MD050.md
+
+> Snapshot 1
+
+ {
+ errors: [
+ {
+ errorContext: 'Not a heading {MD041}',
+ errorDetail: null,
+ errorRange: null,
+ fixInfo: null,
+ lineNumber: 1,
+ ruleDescription: 'First line in a file should be a top-level heading',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md041.md',
+ ruleNames: [
+ 'MD041',
+ 'first-line-heading',
+ 'first-line-h1',
+ ],
+ },
+ {
+ errorContext: '[empty]()',
+ errorDetail: null,
+ errorRange: [
+ 4,
+ 9,
+ ],
+ fixInfo: null,
+ lineNumber: 3,
+ ruleDescription: 'No empty links',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md042.md',
+ ruleNames: [
+ 'MD042',
+ 'no-empty-links',
+ ],
+ },
+ {
+ errorContext: '[empty](#)',
+ errorDetail: null,
+ errorRange: [
+ 4,
+ 10,
+ ],
+ fixInfo: null,
+ lineNumber: 5,
+ ruleDescription: 'No empty links',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md042.md',
+ ruleNames: [
+ 'MD042',
+ 'no-empty-links',
+ ],
+ },
+ {
+ errorContext: '[empty](<>)',
+ errorDetail: null,
+ errorRange: [
+ 4,
+ 11,
+ ],
+ fixInfo: null,
+ lineNumber: 7,
+ ruleDescription: 'No empty links',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md042.md',
+ ruleNames: [
+ 'MD042',
+ 'no-empty-links',
+ ],
+ },
+ {
+ errorContext: '[empty one]()',
+ errorDetail: null,
+ errorRange: [
+ 25,
+ 13,
+ ],
+ fixInfo: null,
+ lineNumber: 17,
+ ruleDescription: 'No empty links',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md042.md',
+ ruleNames: [
+ 'MD042',
+ 'no-empty-links',
+ ],
+ },
+ {
+ errorContext: '# Heading',
+ errorDetail: null,
+ errorRange: null,
+ fixInfo: null,
+ lineNumber: 64,
+ ruleDescription: 'Required heading structure',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md043.md',
+ ruleNames: [
+ 'MD043',
+ 'required-headings',
+ ],
+ },
+ {
+ errorContext: null,
+ errorDetail: 'Expected: markdownlint; Actual: MARKDOWNLINT',
+ errorRange: [
+ 29,
+ 12,
+ ],
+ fixInfo: {
+ deleteCount: 12,
+ editColumn: 29,
+ insertText: 'markdownlint',
+ },
+ lineNumber: 9,
+ ruleDescription: 'Proper names should have the correct capitalization',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md044.md',
+ ruleNames: [
+ 'MD044',
+ 'proper-names',
+ ],
+ },
+ {
+ errorContext: null,
+ errorDetail: 'Expected: markdownlint; Actual: Markdownlint',
+ errorRange: [
+ 7,
+ 12,
+ ],
+ fixInfo: {
+ deleteCount: 12,
+ editColumn: 7,
+ insertText: 'markdownlint',
+ },
+ lineNumber: 12,
+ ruleDescription: 'Proper names should have the correct capitalization',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md044.md',
+ ruleNames: [
+ 'MD044',
+ 'proper-names',
+ ],
+ },
+ {
+ errorContext: null,
+ errorDetail: 'Expected: markdownlint; Actual: MarkDownLint',
+ errorRange: [
+ 1,
+ 12,
+ ],
+ fixInfo: {
+ deleteCount: 12,
+ editColumn: 1,
+ insertText: 'markdownlint',
+ },
+ lineNumber: 15,
+ ruleDescription: 'Proper names should have the correct capitalization',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md044.md',
+ ruleNames: [
+ 'MD044',
+ 'proper-names',
+ ],
+ },
+ {
+ errorContext: null,
+ errorDetail: null,
+ errorRange: [
+ 33,
+ 14,
+ ],
+ fixInfo: null,
+ lineNumber: 19,
+ ruleDescription: 'Images should have alternate text (alt text)',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md045.md',
+ ruleNames: [
+ 'MD045',
+ 'no-alt-text',
+ ],
+ },
+ {
+ errorContext: null,
+ errorDetail: 'Expected: fenced; Actual: indented',
+ errorRange: null,
+ fixInfo: null,
+ lineNumber: 25,
+ ruleDescription: 'Code block style',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md046.md',
+ ruleNames: [
+ 'MD046',
+ 'code-block-style',
+ ],
+ },
+ {
+ errorContext: null,
+ errorDetail: null,
+ errorRange: [
+ 41,
+ 1,
+ ],
+ fixInfo: {
+ editColumn: 42,
+ insertText: `␊
+ `,
+ },
+ lineNumber: 64,
+ ruleDescription: 'Files should end with a single newline character',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md047.md',
+ ruleNames: [
+ 'MD047',
+ 'single-trailing-newline',
+ ],
+ },
+ {
+ errorContext: null,
+ errorDetail: 'Expected: backtick; Actual: tilde',
+ errorRange: null,
+ fixInfo: null,
+ lineNumber: 27,
+ ruleDescription: 'Code fence style',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md048.md',
+ ruleNames: [
+ 'MD048',
+ 'code-fence-style',
+ ],
+ },
+ {
+ errorContext: null,
+ errorDetail: 'Expected: asterisk; Actual: underscore',
+ errorRange: [
+ 21,
+ 1,
+ ],
+ fixInfo: {
+ deleteCount: 1,
+ editColumn: 21,
+ insertText: '*',
+ },
+ lineNumber: 31,
+ ruleDescription: 'Emphasis style',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md049.md',
+ ruleNames: [
+ 'MD049',
+ 'emphasis-style',
+ ],
+ },
+ {
+ errorContext: null,
+ errorDetail: 'Expected: asterisk; Actual: underscore',
+ errorRange: [
+ 26,
+ 1,
+ ],
+ fixInfo: {
+ deleteCount: 1,
+ editColumn: 26,
+ insertText: '*',
+ },
+ lineNumber: 31,
+ ruleDescription: 'Emphasis style',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md049.md',
+ ruleNames: [
+ 'MD049',
+ 'emphasis-style',
+ ],
+ },
+ {
+ errorContext: null,
+ errorDetail: 'Expected: asterisk; Actual: underscore',
+ errorRange: [
+ 49,
+ 1,
+ ],
+ fixInfo: {
+ deleteCount: 1,
+ editColumn: 49,
+ insertText: '*',
+ },
+ lineNumber: 31,
+ ruleDescription: 'Emphasis style',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md049.md',
+ ruleNames: [
+ 'MD049',
+ 'emphasis-style',
+ ],
+ },
+ {
+ errorContext: null,
+ errorDetail: 'Expected: asterisk; Actual: underscore',
+ errorRange: [
+ 56,
+ 1,
+ ],
+ fixInfo: {
+ deleteCount: 1,
+ editColumn: 56,
+ insertText: '*',
+ },
+ lineNumber: 31,
+ ruleDescription: 'Emphasis style',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md049.md',
+ ruleNames: [
+ 'MD049',
+ 'emphasis-style',
+ ],
+ },
+ {
+ errorContext: null,
+ errorDetail: 'Expected: asterisk; Actual: underscore',
+ errorRange: [
+ 10,
+ 1,
+ ],
+ fixInfo: {
+ deleteCount: 1,
+ editColumn: 10,
+ insertText: '*',
+ },
+ lineNumber: 36,
+ ruleDescription: 'Emphasis style',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md049.md',
+ ruleNames: [
+ 'MD049',
+ 'emphasis-style',
+ ],
+ },
+ {
+ errorContext: null,
+ errorDetail: 'Expected: asterisk; Actual: underscore',
+ errorRange: [
+ 9,
+ 1,
+ ],
+ fixInfo: {
+ deleteCount: 1,
+ editColumn: 9,
+ insertText: '*',
+ },
+ lineNumber: 37,
+ ruleDescription: 'Emphasis style',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md049.md',
+ ruleNames: [
+ 'MD049',
+ 'emphasis-style',
+ ],
+ },
+ {
+ errorContext: null,
+ errorDetail: 'Expected: asterisk; Actual: underscore',
+ errorRange: [
+ 14,
+ 1,
+ ],
+ fixInfo: {
+ deleteCount: 1,
+ editColumn: 14,
+ insertText: '*',
+ },
+ lineNumber: 45,
+ ruleDescription: 'Emphasis style',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md049.md',
+ ruleNames: [
+ 'MD049',
+ 'emphasis-style',
+ ],
+ },
+ {
+ errorContext: null,
+ errorDetail: 'Expected: asterisk; Actual: underscore',
+ errorRange: [
+ 21,
+ 1,
+ ],
+ fixInfo: {
+ deleteCount: 1,
+ editColumn: 21,
+ insertText: '*',
+ },
+ lineNumber: 45,
+ ruleDescription: 'Emphasis style',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md049.md',
+ ruleNames: [
+ 'MD049',
+ 'emphasis-style',
+ ],
+ },
+ {
+ errorContext: null,
+ errorDetail: 'Expected: asterisk; Actual: underscore',
+ errorRange: [
+ 28,
+ 1,
+ ],
+ fixInfo: {
+ deleteCount: 1,
+ editColumn: 28,
+ insertText: '*',
+ },
+ lineNumber: 45,
+ ruleDescription: 'Emphasis style',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md049.md',
+ ruleNames: [
+ 'MD049',
+ 'emphasis-style',
+ ],
+ },
+ {
+ errorContext: null,
+ errorDetail: 'Expected: asterisk; Actual: underscore',
+ errorRange: [
+ 40,
+ 1,
+ ],
+ fixInfo: {
+ deleteCount: 1,
+ editColumn: 40,
+ insertText: '*',
+ },
+ lineNumber: 45,
+ ruleDescription: 'Emphasis style',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md049.md',
+ ruleNames: [
+ 'MD049',
+ 'emphasis-style',
+ ],
+ },
+ {
+ errorContext: null,
+ errorDetail: 'Expected: asterisk; Actual: underscore',
+ errorRange: [
+ 47,
+ 1,
+ ],
+ fixInfo: {
+ deleteCount: 1,
+ editColumn: 47,
+ insertText: '*',
+ },
+ lineNumber: 45,
+ ruleDescription: 'Emphasis style',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md049.md',
+ ruleNames: [
+ 'MD049',
+ 'emphasis-style',
+ ],
+ },
+ {
+ errorContext: null,
+ errorDetail: 'Expected: asterisk; Actual: underscore',
+ errorRange: [
+ 54,
+ 1,
+ ],
+ fixInfo: {
+ deleteCount: 1,
+ editColumn: 54,
+ insertText: '*',
+ },
+ lineNumber: 45,
+ ruleDescription: 'Emphasis style',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md049.md',
+ ruleNames: [
+ 'MD049',
+ 'emphasis-style',
+ ],
+ },
+ {
+ errorContext: null,
+ errorDetail: 'Expected: asterisk; Actual: underscore',
+ errorRange: [
+ 56,
+ 1,
+ ],
+ fixInfo: {
+ deleteCount: 1,
+ editColumn: 56,
+ insertText: '*',
+ },
+ lineNumber: 45,
+ ruleDescription: 'Emphasis style',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md049.md',
+ ruleNames: [
+ 'MD049',
+ 'emphasis-style',
+ ],
+ },
+ {
+ errorContext: null,
+ errorDetail: 'Expected: asterisk; Actual: underscore',
+ errorRange: [
+ 68,
+ 1,
+ ],
+ fixInfo: {
+ deleteCount: 1,
+ editColumn: 68,
+ insertText: '*',
+ },
+ lineNumber: 45,
+ ruleDescription: 'Emphasis style',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md049.md',
+ ruleNames: [
+ 'MD049',
+ 'emphasis-style',
+ ],
+ },
+ {
+ errorContext: null,
+ errorDetail: 'Expected: underscore; Actual: asterisk',
+ errorRange: [
+ 30,
+ 2,
+ ],
+ fixInfo: {
+ deleteCount: 2,
+ editColumn: 30,
+ insertText: '__',
+ },
+ lineNumber: 33,
+ ruleDescription: 'Strong style',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md050.md',
+ ruleNames: [
+ 'MD050',
+ 'strong-style',
+ ],
+ },
+ {
+ errorContext: null,
+ errorDetail: 'Expected: underscore; Actual: asterisk',
+ errorRange: [
+ 36,
+ 2,
+ ],
+ fixInfo: {
+ deleteCount: 2,
+ editColumn: 36,
+ insertText: '__',
+ },
+ lineNumber: 33,
+ ruleDescription: 'Strong style',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md050.md',
+ ruleNames: [
+ 'MD050',
+ 'strong-style',
+ ],
+ },
+ {
+ errorContext: null,
+ errorDetail: 'Expected: underscore; Actual: asterisk',
+ errorRange: [
+ 62,
+ 2,
+ ],
+ fixInfo: {
+ deleteCount: 2,
+ editColumn: 62,
+ insertText: '__',
+ },
+ lineNumber: 33,
+ ruleDescription: 'Strong style',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md050.md',
+ ruleNames: [
+ 'MD050',
+ 'strong-style',
+ ],
+ },
+ {
+ errorContext: null,
+ errorDetail: 'Expected: underscore; Actual: asterisk',
+ errorRange: [
+ 70,
+ 2,
+ ],
+ fixInfo: {
+ deleteCount: 2,
+ editColumn: 70,
+ insertText: '__',
+ },
+ lineNumber: 33,
+ ruleDescription: 'Strong style',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md050.md',
+ ruleNames: [
+ 'MD050',
+ 'strong-style',
+ ],
+ },
+ {
+ errorContext: null,
+ errorDetail: 'Expected: underscore; Actual: asterisk',
+ errorRange: [
+ 8,
+ 2,
+ ],
+ fixInfo: {
+ deleteCount: 2,
+ editColumn: 8,
+ insertText: '__',
+ },
+ lineNumber: 41,
+ ruleDescription: 'Strong style',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md050.md',
+ ruleNames: [
+ 'MD050',
+ 'strong-style',
+ ],
+ },
+ {
+ errorContext: null,
+ errorDetail: 'Expected: underscore; Actual: asterisk',
+ errorRange: [
+ 9,
+ 2,
+ ],
+ fixInfo: {
+ deleteCount: 2,
+ editColumn: 9,
+ insertText: '__',
+ },
+ lineNumber: 42,
+ ruleDescription: 'Strong style',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md050.md',
+ ruleNames: [
+ 'MD050',
+ 'strong-style',
+ ],
+ },
+ {
+ errorContext: null,
+ errorDetail: 'Expected: underscore; Actual: asterisk',
+ errorRange: [
+ 14,
+ 2,
+ ],
+ fixInfo: {
+ deleteCount: 2,
+ editColumn: 14,
+ insertText: '__',
+ },
+ lineNumber: 47,
+ ruleDescription: 'Strong style',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md050.md',
+ ruleNames: [
+ 'MD050',
+ 'strong-style',
+ ],
+ },
+ {
+ errorContext: null,
+ errorDetail: 'Expected: underscore; Actual: asterisk',
+ errorRange: [
+ 22,
+ 2,
+ ],
+ fixInfo: {
+ deleteCount: 2,
+ editColumn: 22,
+ insertText: '__',
+ },
+ lineNumber: 47,
+ ruleDescription: 'Strong style',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md050.md',
+ ruleNames: [
+ 'MD050',
+ 'strong-style',
+ ],
+ },
+ {
+ errorContext: null,
+ errorDetail: 'Expected: underscore; Actual: asterisk',
+ errorRange: [
+ 30,
+ 2,
+ ],
+ fixInfo: {
+ deleteCount: 2,
+ editColumn: 30,
+ insertText: '__',
+ },
+ lineNumber: 47,
+ ruleDescription: 'Strong style',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md050.md',
+ ruleNames: [
+ 'MD050',
+ 'strong-style',
+ ],
+ },
+ {
+ errorContext: null,
+ errorDetail: 'Expected: underscore; Actual: asterisk',
+ errorRange: [
+ 43,
+ 2,
+ ],
+ fixInfo: {
+ deleteCount: 2,
+ editColumn: 43,
+ insertText: '__',
+ },
+ lineNumber: 47,
+ ruleDescription: 'Strong style',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md050.md',
+ ruleNames: [
+ 'MD050',
+ 'strong-style',
+ ],
+ },
+ {
+ errorContext: null,
+ errorDetail: 'Expected: underscore; Actual: asterisk',
+ errorRange: [
+ 51,
+ 2,
+ ],
+ fixInfo: {
+ deleteCount: 2,
+ editColumn: 51,
+ insertText: '__',
+ },
+ lineNumber: 47,
+ ruleDescription: 'Strong style',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md050.md',
+ ruleNames: [
+ 'MD050',
+ 'strong-style',
+ ],
+ },
+ {
+ errorContext: null,
+ errorDetail: 'Expected: underscore; Actual: asterisk',
+ errorRange: [
+ 59,
+ 2,
+ ],
+ fixInfo: {
+ deleteCount: 2,
+ editColumn: 59,
+ insertText: '__',
+ },
+ lineNumber: 47,
+ ruleDescription: 'Strong style',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md050.md',
+ ruleNames: [
+ 'MD050',
+ 'strong-style',
+ ],
+ },
+ {
+ errorContext: null,
+ errorDetail: 'Expected: underscore; Actual: asterisk',
+ errorRange: [
+ 62,
+ 2,
+ ],
+ fixInfo: {
+ deleteCount: 2,
+ editColumn: 62,
+ insertText: '__',
+ },
+ lineNumber: 47,
+ ruleDescription: 'Strong style',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md050.md',
+ ruleNames: [
+ 'MD050',
+ 'strong-style',
+ ],
+ },
+ {
+ errorContext: null,
+ errorDetail: 'Expected: underscore; Actual: asterisk',
+ errorRange: [
+ 75,
+ 2,
+ ],
+ fixInfo: {
+ deleteCount: 2,
+ editColumn: 75,
+ insertText: '__',
+ },
+ lineNumber: 47,
+ ruleDescription: 'Strong style',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md050.md',
+ ruleNames: [
+ 'MD050',
+ 'strong-style',
+ ],
+ },
+ ],
+ fixed: `Not a heading {MD041}␊
+ ␊
+ An [empty]() link {MD042}␊
+ ␊
+ An [empty](#) link with fragment {MD042}␊
+ ␊
+ An [empty](<>) link with angle brackets {MD042}␊
+ ␊
+ This is a test file for the markdownlint package. {MD044}␊
+ ␊
+ This is a paragraph␊
+ about markdownlint {MD044}␊
+ that capitalizes the␊
+ name wrong twice:␊
+ markdownlint. {MD044}␊
+ ␊
+ A [normal](link) and an [empty one]() and a [fragment](#one). {MD042}␊
+ ␊
+ An image without alternate text  {MD045}␊
+ ␊
+ \`\`\`text␊
+ Fenced code␊
+ \`\`\`␊
+ ␊
+ Indented code {MD046}␊
+ ␊
+ ~~~text␊
+ Fenced code {MD048:27}␊
+ ~~~␊
+ ␊
+ Mixed *emphasis* on *this* line *with* multiple *issues* {MD049}␊
+ ␊
+ Mixed __strong emphasis__ on __this__ line __with__ multiple __issues__ {MD050}␊
+ ␊
+ Inconsistent␊
+ emphasis *text {MD049}␊
+ spanning* many {MD049}␊
+ lines␊
+ ␊
+ Inconsistent␊
+ strong __emphasis {MD050}␊
+ spanning__ many {MD050}␊
+ lines␊
+ ␊
+ Inconsistent *double* text *interleaved* text *double* *interleaved* emphasis. {MD049}␊
+ ␊
+ Inconsistent __double__ text __interleaved__ text __double__ __interleaved__ strong emphasis. {MD050}␊
+ ␊
+ ␊
+ ␊
+ Missing newline character {MD043} {MD047}␊
+ `,
+ }
+
+## MD051-MD060.md
+
+> Snapshot 1
+
+ {
+ errors: [
+ {
+ errorContext: '[link with a missing](#fragment)',
+ errorDetail: null,
+ errorRange: [
+ 3,
+ 32,
+ ],
+ fixInfo: null,
+ lineNumber: 3,
+ ruleDescription: 'Link fragments should be valid',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md051.md',
+ ruleNames: [
+ 'MD051',
+ 'link-fragments',
+ ],
+ },
+ {
+ errorContext: '[link with a][undefined-label]',
+ errorDetail: 'Missing link or image reference definition: "undefined-label"',
+ errorRange: [
+ 3,
+ 30,
+ ],
+ fixInfo: null,
+ lineNumber: 7,
+ ruleDescription: 'Reference links and images should use a label that is defined',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md052.md',
+ ruleNames: [
+ 'MD052',
+ 'reference-links-images',
+ ],
+ },
+ {
+ errorContext: '[unused-label]: {MD053}',
+ errorDetail: 'Unused link or image reference definition: "unused-label"',
+ errorRange: [
+ 1,
+ 23,
+ ],
+ fixInfo: {
+ deleteCount: -1,
+ },
+ lineNumber: 10,
+ ruleDescription: 'Link and image reference definitions should be needed',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md053.md',
+ ruleNames: [
+ 'MD053',
+ 'link-image-reference-definitions',
+ ],
+ },
+ ],
+ fixed: `# detailed-results-MD051-MD060␊
+ ␊
+ A [link with a missing](#fragment) {MD051}␊
+ ␊
+ A [link with a][defined-label]␊
+ ␊
+ A [link with a][undefined-label] {MD052}␊
+ ␊
+ [defined-label]: https://example.com␊
+ `,
+ }
+
+## alternate_top_level_heading.md
+
+> Snapshot 1
+
+ {
+ errors: [
+ {
+ errorContext: 'Another one {MD025}',
+ errorDetail: null,
+ errorRange: null,
+ fixInfo: null,
+ lineNumber: 3,
+ ruleDescription: 'Multiple top-level headings in the same document',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md025.md',
+ ruleNames: [
+ 'MD025',
+ 'single-title',
+ 'single-h1',
+ ],
+ },
+ ],
+ fixed: `## A level 2 top level heading␊
+ ␊
+ ## Another one {MD025}␊
+ ␊
+ ␊
+ `,
+ }
+
+## atx-heading-spacing-trailing-spaces.md
+
+> Snapshot 1
+
+ {
+ errors: [
+ {
+ errorContext: '##Heading 1 {MD018}',
+ errorDetail: null,
+ errorRange: [
+ 1,
+ 3,
+ ],
+ fixInfo: {
+ editColumn: 3,
+ insertText: ' ',
+ },
+ lineNumber: 5,
+ ruleDescription: 'No space after hash on atx style heading',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md018.md',
+ ruleNames: [
+ 'MD018',
+ 'no-missing-space-atx',
+ ],
+ },
+ {
+ errorContext: '## Heading 2 {MD019}',
+ errorDetail: null,
+ errorRange: [
+ 4,
+ 3,
+ ],
+ fixInfo: {
+ deleteCount: 3,
+ editColumn: 4,
+ },
+ lineNumber: 7,
+ ruleDescription: 'Multiple spaces after hash on atx style heading',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md019.md',
+ ruleNames: [
+ 'MD019',
+ 'no-multiple-space-atx',
+ ],
+ },
+ {
+ errorContext: '##Heading 3 {MD020} ##',
+ errorDetail: null,
+ errorRange: [
+ 1,
+ 3,
+ ],
+ fixInfo: {
+ deleteCount: 24,
+ editColumn: 1,
+ insertText: '## Heading 3 {MD020} ##',
+ },
+ lineNumber: 9,
+ ruleDescription: 'No space inside hashes on closed atx style heading',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md020.md',
+ ruleNames: [
+ 'MD020',
+ 'no-missing-space-closed-atx',
+ ],
+ },
+ {
+ errorContext: '## Heading 4 {MD020}##',
+ errorDetail: null,
+ errorRange: [
+ 20,
+ 3,
+ ],
+ fixInfo: {
+ deleteCount: 24,
+ editColumn: 1,
+ insertText: '## Heading 4 {MD020} ##',
+ },
+ lineNumber: 11,
+ ruleDescription: 'No space inside hashes on closed atx style heading',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md020.md',
+ ruleNames: [
+ 'MD020',
+ 'no-missing-space-closed-atx',
+ ],
+ },
+ {
+ errorContext: '##Heading 5 {MD020}##',
+ errorDetail: null,
+ errorRange: [
+ 1,
+ 3,
+ ],
+ fixInfo: {
+ deleteCount: 23,
+ editColumn: 1,
+ insertText: '## Heading 5 {MD020} ##',
+ },
+ lineNumber: 13,
+ ruleDescription: 'No space inside hashes on closed atx style heading',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md020.md',
+ ruleNames: [
+ 'MD020',
+ 'no-missing-space-closed-atx',
+ ],
+ },
+ {
+ errorContext: '## Heading 5 {MD021} ##',
+ errorDetail: null,
+ errorRange: [
+ 4,
+ 3,
+ ],
+ fixInfo: {
+ deleteCount: 3,
+ editColumn: 4,
+ },
+ lineNumber: 15,
+ ruleDescription: 'Multiple spaces inside hashes on closed atx style heading',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md021.md',
+ ruleNames: [
+ 'MD021',
+ 'no-multiple-space-closed-atx',
+ ],
+ },
+ {
+ errorContext: '## Heading 6 {MD021} ##',
+ errorDetail: null,
+ errorRange: [
+ 22,
+ 2,
+ ],
+ fixInfo: {
+ deleteCount: 2,
+ editColumn: 22,
+ },
+ lineNumber: 17,
+ ruleDescription: 'Multiple spaces inside hashes on closed atx style heading',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md021.md',
+ ruleNames: [
+ 'MD021',
+ 'no-multiple-space-closed-atx',
+ ],
+ },
+ {
+ errorContext: '## Heading 7 {MD021} ##',
+ errorDetail: null,
+ errorRange: [
+ 4,
+ 3,
+ ],
+ fixInfo: {
+ deleteCount: 3,
+ editColumn: 4,
+ },
+ lineNumber: 19,
+ ruleDescription: 'Multiple spaces inside hashes on closed atx style heading',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md021.md',
+ ruleNames: [
+ 'MD021',
+ 'no-multiple-space-closed-atx',
+ ],
+ },
+ {
+ errorContext: '## Heading 7 {MD021} ##',
+ errorDetail: null,
+ errorRange: [
+ 25,
+ 2,
+ ],
+ fixInfo: {
+ deleteCount: 2,
+ editColumn: 25,
+ },
+ lineNumber: 19,
+ ruleDescription: 'Multiple spaces inside hashes on closed atx style heading',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md021.md',
+ ruleNames: [
+ 'MD021',
+ 'no-multiple-space-closed-atx',
+ ],
+ },
+ ],
+ fixed: `# atx-heading-spacing-trailing-spaces␊
+ ␊
+ ␊
+ ␊
+ ## Heading 1 {MD018} ␊
+ ␊
+ ## Heading 2 {MD019} ␊
+ ␊
+ ## Heading 3 {MD020} ##␊
+ ␊
+ ## Heading 4 {MD020} ##␊
+ ␊
+ ## Heading 5 {MD020} ##␊
+ ␊
+ ## Heading 5 {MD021} ## ␊
+ ␊
+ ## Heading 6 {MD021} ## ␊
+ ␊
+ ## Heading 7 {MD021} ## ␊
+ `,
+ }
+
+## atx_closed_heading_spacing.md
+
+> Snapshot 1
+
+ {
+ errors: [
+ {
+ errorContext: '#Heading 1 {MD020} #',
+ errorDetail: null,
+ errorRange: [
+ 1,
+ 2,
+ ],
+ fixInfo: {
+ deleteCount: 20,
+ editColumn: 1,
+ insertText: '# Heading 1 {MD020} #',
+ },
+ lineNumber: 1,
+ ruleDescription: 'No space inside hashes on closed atx style heading',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md020.md',
+ ruleNames: [
+ 'MD020',
+ 'no-missing-space-closed-atx',
+ ],
+ },
+ {
+ errorContext: '## Heading 2 {MD020}##',
+ errorDetail: null,
+ errorRange: [
+ 20,
+ 3,
+ ],
+ fixInfo: {
+ deleteCount: 22,
+ editColumn: 1,
+ insertText: '## Heading 2 {MD020} ##',
+ },
+ lineNumber: 3,
+ ruleDescription: 'No space inside hashes on closed atx style heading',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md020.md',
+ ruleNames: [
+ 'MD020',
+ 'no-missing-space-closed-atx',
+ ],
+ },
+ {
+ errorContext: '##Heading 3 {MD020}##',
+ errorDetail: null,
+ errorRange: [
+ 1,
+ 3,
+ ],
+ fixInfo: {
+ deleteCount: 21,
+ editColumn: 1,
+ insertText: '## Heading 3 {MD020} ##',
+ },
+ lineNumber: 5,
+ ruleDescription: 'No space inside hashes on closed atx style heading',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md020.md',
+ ruleNames: [
+ 'MD020',
+ 'no-missing-space-closed-atx',
+ ],
+ },
+ {
+ errorContext: '## Heading 4 {MD021} ##',
+ errorDetail: null,
+ errorRange: [
+ 4,
+ 1,
+ ],
+ fixInfo: {
+ deleteCount: 1,
+ editColumn: 4,
+ },
+ lineNumber: 7,
+ ruleDescription: 'Multiple spaces inside hashes on closed atx style heading',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md021.md',
+ ruleNames: [
+ 'MD021',
+ 'no-multiple-space-closed-atx',
+ ],
+ },
+ {
+ errorContext: '## Heading 5 {MD021} ##',
+ errorDetail: null,
+ errorRange: [
+ 22,
+ 1,
+ ],
+ fixInfo: {
+ deleteCount: 1,
+ editColumn: 22,
+ },
+ lineNumber: 9,
+ ruleDescription: 'Multiple spaces inside hashes on closed atx style heading',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md021.md',
+ ruleNames: [
+ 'MD021',
+ 'no-multiple-space-closed-atx',
+ ],
+ },
+ {
+ errorContext: '## Heading 6 {MD021} ##',
+ errorDetail: null,
+ errorRange: [
+ 4,
+ 1,
+ ],
+ fixInfo: {
+ deleteCount: 1,
+ editColumn: 4,
+ },
+ lineNumber: 11,
+ ruleDescription: 'Multiple spaces inside hashes on closed atx style heading',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md021.md',
+ ruleNames: [
+ 'MD021',
+ 'no-multiple-space-closed-atx',
+ ],
+ },
+ {
+ errorContext: '## Heading 6 {MD021} ##',
+ errorDetail: null,
+ errorRange: [
+ 23,
+ 1,
+ ],
+ fixInfo: {
+ deleteCount: 1,
+ editColumn: 23,
+ },
+ lineNumber: 11,
+ ruleDescription: 'Multiple spaces inside hashes on closed atx style heading',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md021.md',
+ ruleNames: [
+ 'MD021',
+ 'no-multiple-space-closed-atx',
+ ],
+ },
+ {
+ errorContext: '## Heading 7 {MD021} ##',
+ errorDetail: null,
+ errorRange: [
+ 4,
+ 2,
+ ],
+ fixInfo: {
+ deleteCount: 2,
+ editColumn: 4,
+ },
+ lineNumber: 13,
+ ruleDescription: 'Multiple spaces inside hashes on closed atx style heading',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md021.md',
+ ruleNames: [
+ 'MD021',
+ 'no-multiple-space-closed-atx',
+ ],
+ },
+ {
+ errorContext: '## Heading 7 {MD021} ##',
+ errorDetail: null,
+ errorRange: [
+ 24,
+ 2,
+ ],
+ fixInfo: {
+ deleteCount: 2,
+ editColumn: 24,
+ },
+ lineNumber: 13,
+ ruleDescription: 'Multiple spaces inside hashes on closed atx style heading',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md021.md',
+ ruleNames: [
+ 'MD021',
+ 'no-multiple-space-closed-atx',
+ ],
+ },
+ ],
+ fixed: `# Heading 1 {MD020} #␊
+ ␊
+ ## Heading 2 {MD020} ##␊
+ ␊
+ ## Heading 3 {MD020} ##␊
+ ␊
+ ## Heading 4 {MD021} ##␊
+ ␊
+ ## Heading 5 {MD021} ##␊
+ ␊
+ ## Heading 6 {MD021} ##␊
+ ␊
+ ## Heading 7 {MD021} ##␊
+ ␊
+ ## Heading 8\\#␊
+ ␊
+ ## Heading 9 \\#␊
+ ␊
+ ## Heading 10 \\#␊
+ ␊
+ ␊
+ `,
+ }
+
+## atx_heading_spacing.md
+
+> Snapshot 1
+
+ {
+ errors: [
+ {
+ errorContext: '#Heading 1 {MD018}',
+ errorDetail: null,
+ errorRange: [
+ 1,
+ 2,
+ ],
+ fixInfo: {
+ editColumn: 2,
+ insertText: ' ',
+ },
+ lineNumber: 1,
+ ruleDescription: 'No space after hash on atx style heading',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md018.md',
+ ruleNames: [
+ 'MD018',
+ 'no-missing-space-atx',
+ ],
+ },
+ {
+ errorContext: '## Heading 2 {MD019}',
+ errorDetail: null,
+ errorRange: [
+ 4,
+ 1,
+ ],
+ fixInfo: {
+ deleteCount: 1,
+ editColumn: 4,
+ },
+ lineNumber: 3,
+ ruleDescription: 'Multiple spaces after hash on atx style heading',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md019.md',
+ ruleNames: [
+ 'MD019',
+ 'no-multiple-space-atx',
+ ],
+ },
+ {
+ errorContext: '## Heading 3 {MD019}',
+ errorDetail: null,
+ errorRange: [
+ 4,
+ 2,
+ ],
+ fixInfo: {
+ deleteCount: 2,
+ editColumn: 4,
+ },
+ lineNumber: 5,
+ ruleDescription: 'Multiple spaces after hash on atx style heading',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md019.md',
+ ruleNames: [
+ 'MD019',
+ 'no-multiple-space-atx',
+ ],
+ },
+ ],
+ fixed: `# Heading 1 {MD018}␊
+ ␊
+ ## Heading 2 {MD019}␊
+ ␊
+ ## Heading 3 {MD019}␊
+ ␊
+ ␊
+ `,
+ }
+
+## backslashes-and-backticks.md
+
+> Snapshot 1
+
+ {
+ errors: [],
+ fixed: `# Heading␊
+ ␊
+ \\\\\`\\\\␊
+ \\\\\`\\\\␊
+ `,
+ }
+
+## bare-list-markers.md
+
+> Snapshot 1
+
+ {
+ errors: [],
+ fixed: `# Bare List Markers␊
+ ␊
+ ## Ordered 1/1/1␊
+ ␊
+ 1.␊
+ 1.␊
+ 1.␊
+ ␊
+ ## Ordered 1/2/3␊
+ ␊
+ 1.␊
+ 2.␊
+ 3.␊
+ ␊
+ ## Unordered *␊
+ ␊
+ *␊
+ *␊
+ *␊
+ ␊
+ ## Unordered +␊
+ ␊
+ +␊
+ +␊
+ +␊
+ ␊
+ ## Unordered -␊
+ ␊
+ -␊
+ -␊
+ -␊
+ ␊
+ ␊
+ `,
+ }
+
+## bare-urls-in-html.md
+
+> Snapshot 1
+
+ {
+ errors: [
+ {
+ errorContext: 'https://example.com/fail',
+ errorDetail: null,
+ errorRange: [
+ 6,
+ 24,
+ ],
+ fixInfo: {
+ deleteCount: 24,
+ editColumn: 6,
+ insertText: '',
+ },
+ lineNumber: 7,
+ ruleDescription: 'Bare URL used',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md034.md',
+ ruleNames: [
+ 'MD034',
+ 'no-bare-urls',
+ ],
+ },
+ {
+ errorContext: 'https://example.com/fail',
+ errorDetail: null,
+ errorRange: [
+ 49,
+ 24,
+ ],
+ fixInfo: {
+ deleteCount: 24,
+ editColumn: 49,
+ insertText: '',
+ },
+ lineNumber: 11,
+ ruleDescription: 'Bare URL used',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md034.md',
+ ruleNames: [
+ 'MD034',
+ 'no-bare-urls',
+ ],
+ },
+ {
+ errorContext: 'https://example.com/fail',
+ errorDetail: null,
+ errorRange: [
+ 49,
+ 24,
+ ],
+ fixInfo: {
+ deleteCount: 24,
+ editColumn: 49,
+ insertText: '',
+ },
+ lineNumber: 13,
+ ruleDescription: 'Bare URL used',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md034.md',
+ ruleNames: [
+ 'MD034',
+ 'no-bare-urls',
+ ],
+ },
+ {
+ errorContext: 'https://example.com/fail',
+ errorDetail: null,
+ errorRange: [
+ 41,
+ 24,
+ ],
+ fixInfo: {
+ deleteCount: 24,
+ editColumn: 41,
+ insertText: '',
+ },
+ lineNumber: 19,
+ ruleDescription: 'Bare URL used',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md034.md',
+ ruleNames: [
+ 'MD034',
+ 'no-bare-urls',
+ ],
+ },
+ {
+ errorContext: 'https://example.com/fail',
+ errorDetail: null,
+ errorRange: [
+ 16,
+ 24,
+ ],
+ fixInfo: {
+ deleteCount: 24,
+ editColumn: 16,
+ insertText: '',
+ },
+ lineNumber: 21,
+ ruleDescription: 'Bare URL used',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md034.md',
+ ruleNames: [
+ 'MD034',
+ 'no-bare-urls',
+ ],
+ },
+ {
+ errorContext: 'https://example.com/fail',
+ errorDetail: null,
+ errorRange: [
+ 17,
+ 24,
+ ],
+ fixInfo: {
+ deleteCount: 24,
+ editColumn: 17,
+ insertText: '',
+ },
+ lineNumber: 23,
+ ruleDescription: 'Bare URL used',
+ ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md034.md',
+ ruleNames: [
+ 'MD034',
+ 'no-bare-urls',
+ ],
+ },
+ ],
+ fixed: `# Bare URLs in HTML␊
+ ␊
+