diff --git a/README.md b/README.md index 3355233f..63810e66 100644 --- a/README.md +++ b/README.md @@ -134,7 +134,7 @@ playground for learning and exploring. - **[MD052](doc/md052.md)** *reference-links-images* - Reference links and images should use a label that is defined - **[MD053](doc/md053.md)** *link-image-reference-definitions* - Link and image reference definitions should be needed - **[MD054](doc/md054.md)** *link-image-style* - Link and image style -- **[MD055](doc/md055.md)** *table-missing-border* - Table is missing leading or trailing pipe character +- **[MD055](doc/md055.md)** *table-pipe-style* - Table pipe style diff --git a/demo/markdownlint-browser.js b/demo/markdownlint-browser.js index ab8bdeec..dad1aea0 100644 --- a/demo/markdownlint-browser.js +++ b/demo/markdownlint-browser.js @@ -6729,6 +6729,97 @@ module.exports = { /***/ }), +/***/ "../lib/md055.js": +/*!***********************!*\ + !*** ../lib/md055.js ***! + \***********************/ +/***/ ((module, __unused_webpack_exports, __webpack_require__) => { + +"use strict"; +// @ts-check + + + +function _createForOfIteratorHelper(o, allowArrayLike) { var it = typeof Symbol !== "undefined" && o[Symbol.iterator] || o["@@iterator"]; if (!it) { if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") { if (it) o = it; var i = 0; var F = function F() {}; return { s: F, n: function n() { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }, e: function e(_e) { throw _e; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var normalCompletion = true, didErr = false, err; return { s: function s() { it = it.call(o); }, n: function n() { var step = it.next(); normalCompletion = step.done; return step; }, e: function e(_e2) { didErr = true; err = _e2; }, f: function f() { try { if (!normalCompletion && it["return"] != null) it["return"](); } finally { if (didErr) throw err; } } }; } +function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); } +function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i]; return arr2; } +var _require = __webpack_require__(/*! ../helpers */ "../helpers/helpers.js"), + addErrorDetailIf = _require.addErrorDetailIf; +var _require2 = __webpack_require__(/*! ../helpers/micromark.cjs */ "../helpers/micromark.cjs"), + filterByTypes = _require2.filterByTypes; +var whitespaceTypes = new Set(["linePrefix", "whitespace"]); +var ignoreWhitespace = function ignoreWhitespace(tokens) { + return tokens.filter(function (token) { + return !whitespaceTypes.has(token.type); + }); +}; +var firstOrNothing = function firstOrNothing(items) { + return items[0]; +}; +var lastOrNothing = function lastOrNothing(items) { + return items[items.length - 1]; +}; +var makeRange = function makeRange(start, end) { + return [start, end - start + 1]; +}; +module.exports = { + "names": ["MD055", "table-pipe-style"], + "description": "Table pipe style", + "tags": ["table"], + "function": function MD055(params, onError) { + var style = String(params.config.style || "consistent"); + var expectedStyle = style; + var expectedLeadingPipe = expectedStyle !== "no_leading_or_trailing" && expectedStyle !== "trailing_only"; + var expectedTrailingPipe = expectedStyle !== "no_leading_or_trailing" && expectedStyle !== "leading_only"; + var tables = filterByTypes(params.parsers.micromark.tokens, ["table"]); + var _iterator = _createForOfIteratorHelper(tables), + _step; + try { + for (_iterator.s(); !(_step = _iterator.n()).done;) { + var table = _step.value; + var rows = filterByTypes(table.children, ["tableDelimiterRow", "tableRow"]); + var _iterator2 = _createForOfIteratorHelper(rows), + _step2; + try { + for (_iterator2.s(); !(_step2 = _iterator2.n()).done;) { + var row = _step2.value; + // The following uses of first/lastOrNothing lack fallback handling + // because it seems not to be possible (i.e., 0% coverage) + var firstCell = firstOrNothing(row.children); + var leadingToken = firstOrNothing(ignoreWhitespace(firstCell.children)); + var actualLeadingPipe = leadingToken.type === "tableCellDivider"; + var lastCell = lastOrNothing(row.children); + var trailingToken = lastOrNothing(ignoreWhitespace(lastCell.children)); + var actualTrailingPipe = trailingToken.type === "tableCellDivider"; + var actualStyle = actualLeadingPipe ? actualTrailingPipe ? "leading_and_trailing" : "leading_only" : actualTrailingPipe ? "trailing_only" : "no_leading_or_trailing"; + if (expectedStyle === "consistent") { + expectedStyle = actualStyle; + expectedLeadingPipe = actualLeadingPipe; + expectedTrailingPipe = actualTrailingPipe; + } + if (actualLeadingPipe !== expectedLeadingPipe) { + addErrorDetailIf(onError, firstCell.startLine, expectedStyle, actualStyle, "".concat(expectedLeadingPipe ? "Missing" : "Unexpected", " leading pipe"), undefined, makeRange(row.startColumn, firstCell.startColumn)); + } + if (actualTrailingPipe !== expectedTrailingPipe) { + addErrorDetailIf(onError, lastCell.endLine, expectedStyle, actualStyle, "".concat(expectedTrailingPipe ? "Missing" : "Unexpected", " trailing pipe"), undefined, makeRange(lastCell.endColumn - 1, row.endColumn - 1)); + } + } + } catch (err) { + _iterator2.e(err); + } finally { + _iterator2.f(); + } + } + } catch (err) { + _iterator.e(err); + } finally { + _iterator.f(); + } + } +}; + +/***/ }), + /***/ "../lib/rules.js": /*!***********************!*\ !*** ../lib/rules.js ***! @@ -6750,8 +6841,7 @@ function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len var _require = __webpack_require__(/*! ./constants */ "../lib/constants.js"), homepage = _require.homepage, version = _require.version; -var rules = [__webpack_require__(/*! ./md001 */ "../lib/md001.js"), __webpack_require__(/*! ./md003 */ "../lib/md003.js"), __webpack_require__(/*! ./md004 */ "../lib/md004.js"), __webpack_require__(/*! ./md005 */ "../lib/md005.js"), __webpack_require__(/*! ./md007 */ "../lib/md007.js"), __webpack_require__(/*! ./md009 */ "../lib/md009.js"), __webpack_require__(/*! ./md010 */ "../lib/md010.js"), __webpack_require__(/*! ./md011 */ "../lib/md011.js"), __webpack_require__(/*! ./md012 */ "../lib/md012.js"), __webpack_require__(/*! ./md013 */ "../lib/md013.js"), __webpack_require__(/*! ./md014 */ "../lib/md014.js"), __webpack_require__(/*! ./md018 */ "../lib/md018.js"), __webpack_require__(/*! ./md019 */ "../lib/md019.js"), __webpack_require__(/*! ./md020 */ "../lib/md020.js"), __webpack_require__(/*! ./md021 */ "../lib/md021.js"), __webpack_require__(/*! ./md022 */ "../lib/md022.js"), __webpack_require__(/*! ./md023 */ "../lib/md023.js"), __webpack_require__(/*! ./md024 */ "../lib/md024.js"), __webpack_require__(/*! ./md025 */ "../lib/md025.js"), __webpack_require__(/*! ./md026 */ "../lib/md026.js"), __webpack_require__(/*! ./md027 */ "../lib/md027.js"), __webpack_require__(/*! ./md028 */ "../lib/md028.js"), __webpack_require__(/*! ./md029 */ "../lib/md029.js"), __webpack_require__(/*! ./md030 */ "../lib/md030.js"), __webpack_require__(/*! ./md031 */ "../lib/md031.js"), __webpack_require__(/*! ./md032 */ "../lib/md032.js"), __webpack_require__(/*! ./md033 */ "../lib/md033.js"), __webpack_require__(/*! ./md034 */ "../lib/md034.js"), __webpack_require__(/*! ./md035 */ "../lib/md035.js"), __webpack_require__(/*! ./md036 */ "../lib/md036.js"), __webpack_require__(/*! ./md037 */ "../lib/md037.js"), __webpack_require__(/*! ./md038 */ "../lib/md038.js"), __webpack_require__(/*! ./md039 */ "../lib/md039.js"), __webpack_require__(/*! ./md040 */ "../lib/md040.js"), __webpack_require__(/*! ./md041 */ "../lib/md041.js"), __webpack_require__(/*! ./md042 */ "../lib/md042.js"), __webpack_require__(/*! ./md043 */ "../lib/md043.js"), __webpack_require__(/*! ./md044 */ "../lib/md044.js"), __webpack_require__(/*! ./md045 */ "../lib/md045.js"), __webpack_require__(/*! ./md046 */ "../lib/md046.js"), __webpack_require__(/*! ./md047 */ "../lib/md047.js"), __webpack_require__(/*! ./md048 */ "../lib/md048.js")].concat(_toConsumableArray(__webpack_require__(/*! ./md049-md050 */ "../lib/md049-md050.js")), [__webpack_require__(/*! ./md051 */ "../lib/md051.js"), __webpack_require__(/*! ./md052 */ "../lib/md052.js"), __webpack_require__(/*! ./md053 */ "../lib/md053.js"), __webpack_require__(/*! ./md054 */ "../lib/md054.js") -// md055: See https://github.com/markdownlint/markdownlint +var rules = [__webpack_require__(/*! ./md001 */ "../lib/md001.js"), __webpack_require__(/*! ./md003 */ "../lib/md003.js"), __webpack_require__(/*! ./md004 */ "../lib/md004.js"), __webpack_require__(/*! ./md005 */ "../lib/md005.js"), __webpack_require__(/*! ./md007 */ "../lib/md007.js"), __webpack_require__(/*! ./md009 */ "../lib/md009.js"), __webpack_require__(/*! ./md010 */ "../lib/md010.js"), __webpack_require__(/*! ./md011 */ "../lib/md011.js"), __webpack_require__(/*! ./md012 */ "../lib/md012.js"), __webpack_require__(/*! ./md013 */ "../lib/md013.js"), __webpack_require__(/*! ./md014 */ "../lib/md014.js"), __webpack_require__(/*! ./md018 */ "../lib/md018.js"), __webpack_require__(/*! ./md019 */ "../lib/md019.js"), __webpack_require__(/*! ./md020 */ "../lib/md020.js"), __webpack_require__(/*! ./md021 */ "../lib/md021.js"), __webpack_require__(/*! ./md022 */ "../lib/md022.js"), __webpack_require__(/*! ./md023 */ "../lib/md023.js"), __webpack_require__(/*! ./md024 */ "../lib/md024.js"), __webpack_require__(/*! ./md025 */ "../lib/md025.js"), __webpack_require__(/*! ./md026 */ "../lib/md026.js"), __webpack_require__(/*! ./md027 */ "../lib/md027.js"), __webpack_require__(/*! ./md028 */ "../lib/md028.js"), __webpack_require__(/*! ./md029 */ "../lib/md029.js"), __webpack_require__(/*! ./md030 */ "../lib/md030.js"), __webpack_require__(/*! ./md031 */ "../lib/md031.js"), __webpack_require__(/*! ./md032 */ "../lib/md032.js"), __webpack_require__(/*! ./md033 */ "../lib/md033.js"), __webpack_require__(/*! ./md034 */ "../lib/md034.js"), __webpack_require__(/*! ./md035 */ "../lib/md035.js"), __webpack_require__(/*! ./md036 */ "../lib/md036.js"), __webpack_require__(/*! ./md037 */ "../lib/md037.js"), __webpack_require__(/*! ./md038 */ "../lib/md038.js"), __webpack_require__(/*! ./md039 */ "../lib/md039.js"), __webpack_require__(/*! ./md040 */ "../lib/md040.js"), __webpack_require__(/*! ./md041 */ "../lib/md041.js"), __webpack_require__(/*! ./md042 */ "../lib/md042.js"), __webpack_require__(/*! ./md043 */ "../lib/md043.js"), __webpack_require__(/*! ./md044 */ "../lib/md044.js"), __webpack_require__(/*! ./md045 */ "../lib/md045.js"), __webpack_require__(/*! ./md046 */ "../lib/md046.js"), __webpack_require__(/*! ./md047 */ "../lib/md047.js"), __webpack_require__(/*! ./md048 */ "../lib/md048.js")].concat(_toConsumableArray(__webpack_require__(/*! ./md049-md050 */ "../lib/md049-md050.js")), [__webpack_require__(/*! ./md051 */ "../lib/md051.js"), __webpack_require__(/*! ./md052 */ "../lib/md052.js"), __webpack_require__(/*! ./md053 */ "../lib/md053.js"), __webpack_require__(/*! ./md054 */ "../lib/md054.js"), __webpack_require__(/*! ./md055 */ "../lib/md055.js") // md056: See https://github.com/markdownlint/markdownlint // md057: See https://github.com/markdownlint/markdownlint ]); diff --git a/doc-build/md055.md b/doc-build/md055.md index f29f3fef..c4331707 100644 --- a/doc-build/md055.md +++ b/doc-build/md055.md @@ -1,34 +1,42 @@ -This rule is triggered when a [GFM table][gfm-table] is missing a leading -or trailing pipe character `|`. +This rule is triggered when a [GitHub Flavored Markdown table][gfm-table] is +inconsistent about its use of leading and trailing pipe characters (`|`). -This table is missing pipes on both sides: +By default (`consistent` style), the header row of the first table in a document +is used to determine the style that is enforced for all tables in that document. +A specific style can be required by setting the `style` parameter accordingly. + +This table's header row has leading and trailing pipes, but its delimiter row is +missing the trailing pipe and its first row of cells is missing the leading +pipe: ```markdown | Heading | Heading | -|---------|--------- +| ------- | ------- Cell | Cell | ``` -To fix this, make sure there is a pipe character at the start and end of the -row: +To fix these issues, make sure there is a pipe character at the beginning and +end of every row: ```markdown | Heading | Heading | -|---------|---------| +| ------- | ------- | | Cell | Cell | ``` -Note that text immediately below a table is treated as part of the table and -will trigger this rule: +Note that text immediately following a table (i.e., not separated by an empty +line) is treated as part of the table (per the specification) and may also +trigger this rule: ```markdown | Heading | Heading | -|---------|---------| +| ------- | ------- | | Cell | Cell | -This text will trigger the rule +This text is part of the table ``` Rationale: Some parsers have difficulty with tables that are missing their -leading or trailing pipe characters. +leading or trailing pipe characters. The use of leading/trailing pipes can also +help provide visual clarity. [gfm-table]: https://github.github.com/gfm/#tables-extension- diff --git a/doc/Rules.md b/doc/Rules.md index 4d2e2a37..32c86291 100644 --- a/doc/Rules.md +++ b/doc/Rules.md @@ -2323,6 +2323,63 @@ Inline links and images can include descriptive text, but take up more space in Markdown form. Reference links and images can be easier to read and manipulate in Markdown form, but require a separate link reference definition. + + +## `MD055` - Table pipe style + +Tags: `table` + +Aliases: `table-pipe-style` + +Parameters: + +- `style`: Table pipe style (`string`, default `consistent`, values + `consistent` / `leading_and_trailing` / `leading_only` / + `no_leading_or_trailing` / `trailing_only`) + +This rule is triggered when a [GitHub Flavored Markdown table][gfm-table] is +inconsistent about its use of leading and trailing pipe characters (`|`). + +By default (`consistent` style), the header row of the first table in a document +is used to determine the style that is enforced for all tables in that document. +A specific style can be required by setting the `style` parameter accordingly. + +This table's header row has leading and trailing pipes, but its delimiter row is +missing the trailing pipe and its first row of cells is missing the leading +pipe: + +```markdown +| Heading | Heading | +| ------- | ------- + Cell | Cell | +``` + +To fix these issues, make sure there is a pipe character at the beginning and +end of every row: + +```markdown +| Heading | Heading | +| ------- | ------- | +| Cell | Cell | +``` + +Note that text immediately following a table (i.e., not separated by an empty +line) is treated as part of the table (per the specification) and may also +trigger this rule: + +```markdown +| Heading | Heading | +| ------- | ------- | +| Cell | Cell | +This text is part of the table +``` + +Rationale: Some parsers have difficulty with tables that are missing their +leading or trailing pipe characters. The use of leading/trailing pipes can also +help provide visual clarity. + +[gfm-table]: https://github.github.com/gfm/#tables-extension- + diff --git a/test/markdownlint-test.js b/test/markdownlint-test.js index c2820a4b..f9f46e31 100644 --- a/test/markdownlint-test.js +++ b/test/markdownlint-test.js @@ -918,7 +918,7 @@ test("readme", async(t) => { }); test("validateJsonUsingConfigSchemaStrict", async(t) => { - t.plan(173); + t.plan(178); // @ts-ignore const ajv = new Ajv(ajvOptions); const validateSchemaStrict = ajv.compile(configSchemaStrict); diff --git a/test/md033-cannot-read-property-of-undefined.md b/test/md033-cannot-read-property-of-undefined.md index 96f0820d..ad626347 100644 --- a/test/md033-cannot-read-property-of-undefined.md +++ b/test/md033-cannot-read-property-of-undefined.md @@ -11,5 +11,5 @@ text | text {MD033} | text diff --git a/test/snapshots/markdownlint-test-repos.js.md b/test/snapshots/markdownlint-test-repos.js.md index 6ee955df..6a209c5b 100644 --- a/test/snapshots/markdownlint-test-repos.js.md +++ b/test/snapshots/markdownlint-test-repos.js.md @@ -14,13 +14,454 @@ Generated by [AVA](https://avajs.dev). > Expected linting violations - '' + `test-repos/dotnet-docs/docs/core/compatibility/6.0.md: 74: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/compatibility/6.0.md: 77: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/compatibility/globalization/5.0/listseparator-value-change.md: 19: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/core/compatibility/globalization/5.0/listseparator-value-change.md: 19: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/dependency-loading/loading-managed.md: 23: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: trailing_only; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/core/dependency-loading/loading-managed.md: 25: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: trailing_only; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/core/dependency-loading/loading-managed.md: 28: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: trailing_only; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/core/dependency-loading/loading-managed.md: 29: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: trailing_only; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/core/dependency-loading/loading-managed.md: 30: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: trailing_only; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/collect-dumps-crash.md: 19: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 151: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 152: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 153: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 154: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 155: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 156: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 157: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 158: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 159: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 160: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 161: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 162: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 163: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 164: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 165: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 166: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 167: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 168: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 169: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 170: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 171: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 172: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 173: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 174: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 175: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 176: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 177: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 178: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 179: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 180: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 181: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 182: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 183: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 184: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 185: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 186: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 187: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 188: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 189: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 190: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 191: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 192: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 193: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 194: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 195: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 196: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 197: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 198: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 199: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 200: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 201: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 202: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 203: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 204: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 205: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 206: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 207: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 208: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 209: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 210: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 211: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 212: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 213: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 214: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 215: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 216: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 217: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 218: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 219: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 220: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 221: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 222: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 223: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 224: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 225: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 226: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 227: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 228: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 51: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 116: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 117: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 118: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 119: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 120: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 121: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 122: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 123: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 124: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 125: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 126: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 127: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 128: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 129: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 130: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 131: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 132: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 133: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 134: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 135: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 136: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 137: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 138: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 139: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 140: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 141: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 142: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 143: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 144: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 145: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 146: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 147: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 148: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 149: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 150: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 151: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 152: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 153: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 154: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 155: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 156: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 157: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 158: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 159: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 160: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 161: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 162: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 163: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 164: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 165: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 166: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 167: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 168: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 169: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 170: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 171: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 172: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 173: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 174: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 175: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 176: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 177: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 178: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 179: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 180: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 181: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 182: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 183: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 184: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 185: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 186: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 187: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 188: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 189: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 190: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 191: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 192: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 193: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 194: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 195: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 199: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 200: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 201: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 202: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 203: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 204: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 205: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 205: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 206: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 207: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 208: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 209: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 210: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 211: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 212: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 213: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 214: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 218: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 219: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 220: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 221: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 222: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 223: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 224: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 225: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 226: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 227: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 228: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 229: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 230: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 231: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 232: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 233: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/runtime-config/wpf.md: 18: MD055/table-pipe-style Table pipe style [Expected: leading_only; Actual: leading_and_trailing; Unexpected trailing pipe]␊ + test-repos/dotnet-docs/docs/core/runtime-config/wpf.md: 19: MD055/table-pipe-style Table pipe style [Expected: leading_only; Actual: leading_and_trailing; Unexpected trailing pipe]␊ + test-repos/dotnet-docs/docs/core/runtime-config/wpf.md: 20: MD055/table-pipe-style Table pipe style [Expected: leading_only; Actual: leading_and_trailing; Unexpected trailing pipe]␊ + test-repos/dotnet-docs/docs/core/runtime-discovery/troubleshoot-app-launch.md: 144: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/core/runtime-discovery/troubleshoot-app-launch.md: 144: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/runtime-discovery/troubleshoot-app-launch.md: 151: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/core/runtime-discovery/troubleshoot-app-launch.md: 151: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/tools/dotnet.md: 183: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/core/tools/dotnet.md: 183: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/tools/dotnet.md: 184: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/core/tools/dotnet.md: 184: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/tools/dotnet.md: 185: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/core/tools/dotnet.md: 185: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/tools/dotnet.md: 186: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/core/tools/dotnet.md: 186: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/tools/dotnet.md: 187: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/core/tools/dotnet.md: 187: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/tools/dotnet.md: 191: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/core/tools/dotnet.md: 191: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/tools/dotnet.md: 192: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/core/tools/dotnet.md: 192: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/tools/dotnet.md: 193: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/core/tools/dotnet.md: 193: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/tools/dotnet.md: 194: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/core/tools/dotnet.md: 194: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/tools/dotnet.md: 198: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/core/tools/dotnet.md: 198: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/tools/dotnet.md: 199: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/core/tools/dotnet.md: 199: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/tools/dotnet.md: 200: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/core/tools/dotnet.md: 200: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/tools/dotnet.md: 201: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/core/tools/dotnet.md: 201: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/tools/dotnet.md: 202: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/core/tools/dotnet.md: 202: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/tools/dotnet.md: 203: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/core/tools/dotnet.md: 203: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/tools/dotnet.md: 204: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/core/tools/dotnet.md: 204: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/tools/dotnet.md: 205: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/core/tools/dotnet.md: 205: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/tools/dotnet.md: 206: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/core/tools/dotnet.md: 206: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/tools/dotnet.md: 207: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/core/tools/dotnet.md: 207: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/tools/dotnet.md: 208: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/core/tools/dotnet.md: 208: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/tools/dotnet.md: 212: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/core/tools/dotnet.md: 212: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/tools/dotnet.md: 213: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/core/tools/dotnet.md: 213: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/tools/dotnet.md: 214: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/core/tools/dotnet.md: 214: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/tools/dotnet.md: 215: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/core/tools/dotnet.md: 215: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/tools/dotnet.md: 216: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/core/tools/dotnet.md: 216: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/tools/dotnet.md: 217: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/core/tools/dotnet.md: 217: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/tools/dotnet.md: 218: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/core/tools/dotnet.md: 218: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/tools/dotnet.md: 219: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/core/tools/dotnet.md: 219: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/tools/dotnet.md: 225: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/core/tools/dotnet.md: 225: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/tools/dotnet.md: 226: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/core/tools/dotnet.md: 226: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/tools/dotnet.md: 227: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/core/tools/dotnet.md: 227: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/tools/dotnet.md: 228: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/core/tools/dotnet.md: 228: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/tools/dotnet.md: 229: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/core/tools/dotnet.md: 229: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/tools/dotnet.md: 230: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/core/tools/dotnet.md: 230: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/core/tools/dotnet.md: 231: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/core/tools/dotnet.md: 231: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/csharp/linq/query-a-collection-of-objects.md: 85: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: trailing_only; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/csharp/linq/query-a-collection-of-objects.md: 107: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: trailing_only; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/csharp/programming-guide/concepts/index.md: 14: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: trailing_only; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/csharp/programming-guide/strings/index.md: 82: MD055/table-pipe-style Table pipe style [Expected: trailing_only; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/dotnet-docs/docs/csharp/programming-guide/strings/index.md: 83: MD055/table-pipe-style Table pipe style [Expected: trailing_only; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/dotnet-docs/docs/csharp/programming-guide/strings/index.md: 84: MD055/table-pipe-style Table pipe style [Expected: trailing_only; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/dotnet-docs/docs/csharp/programming-guide/strings/index.md: 85: MD055/table-pipe-style Table pipe style [Expected: trailing_only; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/dotnet-docs/docs/csharp/programming-guide/strings/index.md: 86: MD055/table-pipe-style Table pipe style [Expected: trailing_only; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/dotnet-docs/docs/csharp/programming-guide/strings/index.md: 87: MD055/table-pipe-style Table pipe style [Expected: trailing_only; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/dotnet-docs/docs/csharp/programming-guide/strings/index.md: 88: MD055/table-pipe-style Table pipe style [Expected: trailing_only; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/dotnet-docs/docs/csharp/programming-guide/strings/index.md: 89: MD055/table-pipe-style Table pipe style [Expected: trailing_only; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/dotnet-docs/docs/csharp/programming-guide/strings/index.md: 90: MD055/table-pipe-style Table pipe style [Expected: trailing_only; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/dotnet-docs/docs/csharp/programming-guide/strings/index.md: 91: MD055/table-pipe-style Table pipe style [Expected: trailing_only; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/dotnet-docs/docs/csharp/programming-guide/strings/index.md: 92: MD055/table-pipe-style Table pipe style [Expected: trailing_only; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/dotnet-docs/docs/csharp/programming-guide/strings/index.md: 93: MD055/table-pipe-style Table pipe style [Expected: trailing_only; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/dotnet-docs/docs/csharp/programming-guide/strings/index.md: 94: MD055/table-pipe-style Table pipe style [Expected: trailing_only; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/dotnet-docs/docs/csharp/programming-guide/strings/index.md: 95: MD055/table-pipe-style Table pipe style [Expected: trailing_only; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/dotnet-docs/docs/csharp/programming-guide/strings/index.md: 96: MD055/table-pipe-style Table pipe style [Expected: trailing_only; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/dotnet-docs/docs/framework/additional-apis/pos-for-net/poscommon-class.md: 45: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/framework/additional-apis/pos-for-net/poscommon-class.md: 46: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: trailing_only; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/framework/additional-apis/pos-for-net/poscommon-class.md: 49: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/framework/additional-apis/pos-for-net/poscommon-class.md: 50: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: trailing_only; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/framework/additional-apis/pos-for-net/poscommon-class.md: 53: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/framework/additional-apis/pos-for-net/poscommon-class.md: 54: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: trailing_only; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/framework/additional-apis/pos-for-net/poscommon-class.md: 58: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/framework/additional-apis/pos-for-net/poscommon-class.md: 59: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: trailing_only; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/framework/additional-apis/pos-for-net/poscommon-class.md: 64: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/framework/additional-apis/pos-for-net/poscommon-class.md: 65: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: trailing_only; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/framework/configure-apps/file-schema/runtime/appcontextswitchoverrides-element.md: 84: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: trailing_only; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/framework/data/adonet/ef/language-reference/supported-and-unsupported-linq-methods-linq-to-entities.md: 139: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: trailing_only; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/framework/get-started/index.md: 77: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/framework/tools/caspol-exe-code-access-security-policy-tool.md: 55: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/framework/tools/mage-exe-manifest-generation-and-editing-tool.md: 78: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: trailing_only; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/framework/unmanaged-api/wmi/beginenumeration.md: 71: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: trailing_only; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/framework/unmanaged-api/wmi/beginenumeration.md: 78: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: trailing_only; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/framework/unmanaged-api/wmi/beginenumeration.md: 88: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: trailing_only; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/framework/unmanaged-api/wmi/beginmethodenumeration.md: 46: MD055/table-pipe-style Table pipe style [Expected: trailing_only; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/dotnet-docs/docs/framework/unmanaged-api/wmi/beginmethodenumeration.md: 47: MD055/table-pipe-style Table pipe style [Expected: trailing_only; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/dotnet-docs/docs/framework/unmanaged-api/wmi/beginmethodenumeration.md: 48: MD055/table-pipe-style Table pipe style [Expected: trailing_only; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/dotnet-docs/docs/framework/unmanaged-api/wmi/beginmethodenumeration.md: 54: MD055/table-pipe-style Table pipe style [Expected: trailing_only; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/dotnet-docs/docs/framework/unmanaged-api/wmi/beginmethodenumeration.md: 55: MD055/table-pipe-style Table pipe style [Expected: trailing_only; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/dotnet-docs/docs/framework/unmanaged-api/wmi/beginmethodenumeration.md: 56: MD055/table-pipe-style Table pipe style [Expected: trailing_only; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/dotnet-docs/docs/framework/unmanaged-api/wmi/beginmethodenumeration.md: 57: MD055/table-pipe-style Table pipe style [Expected: trailing_only; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/dotnet-docs/docs/framework/unmanaged-api/wmi/putmethod.md: 64: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/framework/unmanaged-api/wmi/qualifierset-beginenumeration.md: 67: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/framework/unmanaged-api/wmi/qualifierset-getnames.md: 50: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/fsharp/language-reference/caller-information.md: 14: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/fsharp/language-reference/keyword-reference.md: 200: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/fsharp/language-reference/keyword-reference.md: 200: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/fsharp/language-reference/keyword-reference.md: 201: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/fsharp/language-reference/keyword-reference.md: 201: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/fsharp/language-reference/keyword-reference.md: 202: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/fsharp/language-reference/keyword-reference.md: 202: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/fsharp/language-reference/keyword-reference.md: 203: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/fsharp/language-reference/keyword-reference.md: 203: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/fsharp/language-reference/keyword-reference.md: 204: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/fsharp/language-reference/keyword-reference.md: 204: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/fsharp/language-reference/keyword-reference.md: 205: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/fsharp/language-reference/keyword-reference.md: 205: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/fsharp/language-reference/keyword-reference.md: 206: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/fsharp/language-reference/keyword-reference.md: 206: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/fsharp/language-reference/keyword-reference.md: 207: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/fsharp/language-reference/keyword-reference.md: 207: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/fsharp/language-reference/keyword-reference.md: 208: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/fsharp/language-reference/keyword-reference.md: 208: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/fsharp/language-reference/keyword-reference.md: 209: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/fsharp/language-reference/keyword-reference.md: 209: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/fsharp/language-reference/keyword-reference.md: 210: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/fsharp/language-reference/keyword-reference.md: 210: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/fsharp/style-guide/component-design-guidelines.md: 69: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/fsharp/style-guide/component-design-guidelines.md: 81: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/fundamentals/apicompat/diagnostic-ids.md: 44: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/fundamentals/diagnostics/runtime-loader-binder-events.md: 79: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/fundamentals/diagnostics/runtime-loader-binder-events.md: 81: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/fundamentals/diagnostics/runtime-loader-binder-events.md: 144: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/fundamentals/diagnostics/runtime-loader-binder-events.md: 192: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/fundamentals/diagnostics/runtime-loader-binder-events.md: 211: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/fundamentals/diagnostics/runtime-loader-binder-events.md: 234: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/fundamentals/diagnostics/runtime-loader-binder-events.md: 239: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/fundamentals/diagnostics/runtime-thread-events.md: 39: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/fundamentals/diagnostics/runtime-thread-events.md: 40: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/fundamentals/diagnostics/runtime-thread-events.md: 41: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/fundamentals/diagnostics/runtime-thread-events.md: 231: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/fundamentals/diagnostics/runtime-thread-events.md: 261: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/fundamentals/diagnostics/runtime-thread-events.md: 282: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/fundamentals/diagnostics/runtime-thread-events.md: 303: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/fundamentals/diagnostics/runtime-thread-events.md: 326: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/iot/tutorials/adc.md: 57: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/iot/tutorials/lcd-display.md: 50: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/machine-learning/how-to-guides/explain-machine-learning-model-permutation-feature-importance-ml-net.md: 27: MD055/table-pipe-style Table pipe style [Expected: leading_only; Actual: leading_and_trailing; Unexpected trailing pipe]␊ + test-repos/dotnet-docs/docs/machine-learning/how-to-guides/explain-machine-learning-model-permutation-feature-importance-ml-net.md: 156: MD055/table-pipe-style Table pipe style [Expected: leading_only; Actual: leading_and_trailing; Unexpected trailing pipe]␊ + test-repos/dotnet-docs/docs/machine-learning/how-to-guides/explain-machine-learning-model-permutation-feature-importance-ml-net.md: 157: MD055/table-pipe-style Table pipe style [Expected: leading_only; Actual: leading_and_trailing; Unexpected trailing pipe]␊ + test-repos/dotnet-docs/docs/machine-learning/how-to-guides/explain-machine-learning-model-permutation-feature-importance-ml-net.md: 158: MD055/table-pipe-style Table pipe style [Expected: leading_only; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/machine-learning/how-to-guides/explain-machine-learning-model-permutation-feature-importance-ml-net.md: 159: MD055/table-pipe-style Table pipe style [Expected: leading_only; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/machine-learning/how-to-guides/explain-machine-learning-model-permutation-feature-importance-ml-net.md: 160: MD055/table-pipe-style Table pipe style [Expected: leading_only; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/machine-learning/how-to-guides/explain-machine-learning-model-permutation-feature-importance-ml-net.md: 161: MD055/table-pipe-style Table pipe style [Expected: leading_only; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/machine-learning/how-to-guides/explain-machine-learning-model-permutation-feature-importance-ml-net.md: 162: MD055/table-pipe-style Table pipe style [Expected: leading_only; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/machine-learning/how-to-guides/explain-machine-learning-model-permutation-feature-importance-ml-net.md: 163: MD055/table-pipe-style Table pipe style [Expected: leading_only; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/machine-learning/how-to-guides/explain-machine-learning-model-permutation-feature-importance-ml-net.md: 164: MD055/table-pipe-style Table pipe style [Expected: leading_only; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/machine-learning/how-to-guides/explain-machine-learning-model-permutation-feature-importance-ml-net.md: 165: MD055/table-pipe-style Table pipe style [Expected: leading_only; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/machine-learning/how-to-guides/explain-machine-learning-model-permutation-feature-importance-ml-net.md: 166: MD055/table-pipe-style Table pipe style [Expected: leading_only; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/machine-learning/how-to-guides/explain-machine-learning-model-permutation-feature-importance-ml-net.md: 167: MD055/table-pipe-style Table pipe style [Expected: leading_only; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/machine-learning/how-to-guides/explain-machine-learning-model-permutation-feature-importance-ml-net.md: 168: MD055/table-pipe-style Table pipe style [Expected: leading_only; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/machine-learning/how-to-guides/explain-machine-learning-model-permutation-feature-importance-ml-net.md: 169: MD055/table-pipe-style Table pipe style [Expected: leading_only; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/machine-learning/how-to-guides/how-to-use-the-automl-api.md: 44: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/machine-learning/how-to-guides/how-to-use-the-automl-api.md: 44: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/machine-learning/how-to-guides/how-to-use-the-automl-api.md: 45: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/machine-learning/how-to-guides/how-to-use-the-automl-api.md: 45: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/machine-learning/how-to-guides/how-to-use-the-automl-api.md: 46: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/machine-learning/how-to-guides/how-to-use-the-automl-api.md: 46: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/machine-learning/how-to-guides/prepare-data-ml-net.md: 331: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/machine-learning/how-to-guides/prepare-data-ml-net.md: 333: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/machine-learning/how-to-guides/prepare-data-ml-net.md: 334: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/machine-learning/how-to-guides/prepare-data-ml-net.md: 335: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/machine-learning/how-to-guides/prepare-data-ml-net.md: 336: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/machine-learning/how-to-guides/prepare-data-ml-net.md: 337: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/machine-learning/how-to-guides/prepare-data-ml-net.md: 338: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/machine-learning/resources/metrics.md: 76: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/machine-learning/tutorials/sentiment-analysis-model-builder.md: 53: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/machine-learning/tutorials/sentiment-analysis-model-builder.md: 53: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/machine-learning/tutorials/sentiment-analysis-model-builder.md: 54: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/machine-learning/tutorials/sentiment-analysis-model-builder.md: 54: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/machine-learning/tutorials/sentiment-analysis-model-builder.md: 55: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/machine-learning/tutorials/sentiment-analysis-model-builder.md: 55: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/standard/base-types/regular-expression-language-quick-reference.md: 108: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/standard/base-types/regular-expression-language-quick-reference.md: 108: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/standard/base-types/regular-expression-language-quick-reference.md: 109: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/standard/base-types/regular-expression-language-quick-reference.md: 109: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/standard/base-types/regular-expression-language-quick-reference.md: 110: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/standard/base-types/regular-expression-language-quick-reference.md: 110: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/standard/base-types/regular-expression-language-quick-reference.md: 111: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/standard/base-types/regular-expression-language-quick-reference.md: 111: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/standard/data/sqlite/connection-strings.md: 69: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/standard/data/sqlite/connection-strings.md: 71: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/standard/data/sqlite/connection-strings.md: 72: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/standard/exceptions/exception-class-and-properties.md: 25: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/standard/io/buffers.md: 55: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: trailing_only; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/standard/language-independence.md: 58: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: trailing_only; Unexpected trailing pipe]␊ + test-repos/dotnet-docs/docs/standard/language-independence.md: 59: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_only; Unexpected leading pipe]␊ + test-repos/dotnet-docs/docs/standard/serialization/system-text-json/migrate-from-newtonsoft.md: 88: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/standard/serialization/system-text-json/migrate-from-newtonsoft.md: 88: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/standard/serialization/system-text-json/migrate-from-newtonsoft.md: 137: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/standard/serialization/system-text-json/migrate-from-newtonsoft.md: 137: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/standard/serialization/system-text-json/migrate-from-newtonsoft.md: 186: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/standard/serialization/system-text-json/migrate-from-newtonsoft.md: 186: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/visual-basic/language-reference/statements/end-keyword-statement.md: 61: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/visual-basic/language-reference/statements/end-keyword-statement.md: 62: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/visual-basic/language-reference/statements/end-keyword-statement.md: 63: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/visual-basic/language-reference/statements/end-keyword-statement.md: 64: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/visual-basic/language-reference/statements/end-keyword-statement.md: 65: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/visual-basic/language-reference/statements/end-keyword-statement.md: 66: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/visual-basic/language-reference/statements/end-keyword-statement.md: 67: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/visual-basic/language-reference/statements/end-keyword-statement.md: 68: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/docs/visual-basic/programming-guide/concepts/linq/classification-of-standard-query-operators-by-manner-of-execution.md: 59: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: trailing_only; Missing leading pipe]␊ + test-repos/dotnet-docs/docs/visual-basic/programming-guide/concepts/linq/classification-of-standard-query-operators-by-manner-of-execution.md: 81: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: trailing_only; Missing leading pipe]␊ + test-repos/dotnet-docs/includes/migration-guide/retargeting/wpf/wpf-textboxtext-can-be-out-of-sync-with-databinding.md: 15: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/includes/migration-guide/runtime/asp/sharing-session-state-with-aspnet-stateserver-requires-all-servers-web-farm.md: 15: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/includes/migration-guide/runtime/asp/webutilityhtmldecode-no-longer-decodes-invalid-input-sequences.md: 15: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/includes/migration-guide/runtime/core/change-behavior-for-taskwaitall-methods-with-time-out-arguments.md: 15: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/includes/migration-guide/runtime/core/some-net-apis-cause-first-chance-handled-entrypointnotfoundexceptions.md: 15: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/includes/migration-guide/runtime/ef/log-file-name-created-by-objectcontextcreatedatabase-method-has-changed.md: 15: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/dotnet-docs/includes/migration-guide/runtime/wpf/calling-itemsrefresh-on-wpf-listbox-listview-datagrid-with-items-selected.md: 15: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]` ## https://github.com/electron/electron > Expected linting violations - `test-repos/electron-electron/docs/tutorial/offscreen-rendering.md: 38: MD052/reference-links-images Reference links and images should use a label that is defined [Missing link or image reference definition: "disablehardwareacceleration"] [Context: "[\`app.disableHardwareAcceleration()\`][disablehardwareacceleration]"]␊ + `test-repos/electron-electron/docs/api/context-bridge.md: 132: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/electron-electron/docs/tutorial/offscreen-rendering.md: 38: MD052/reference-links-images Reference links and images should use a label that is defined [Missing link or image reference definition: "disablehardwareacceleration"] [Context: "[\`app.disableHardwareAcceleration()\`][disablehardwareacceleration]"]␊ test-repos/electron-electron/docs/tutorial/progress-bar.md: 34: MD052/reference-links-images Reference links and images should use a label that is defined [Missing link or image reference definition: "setprogressbar"] [Context: "[\`setProgressBar()\`][setprogressbar]"]␊ test-repos/electron-electron/docs/tutorial/progress-bar.md: 46: MD052/reference-links-images Reference links and images should use a label that is defined [Missing link or image reference definition: "setprogressbar"] [Context: "[API documentation for more options and modes][setprogressbar]"]` @@ -28,7 +469,20 @@ Generated by [AVA](https://avajs.dev). > Expected linting violations - '' + `test-repos/eslint-eslint/docs/src/extend/scope-manager-interface.md: 361: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/eslint-eslint/docs/src/extend/scope-manager-interface.md: 362: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/eslint-eslint/docs/src/extend/scope-manager-interface.md: 363: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/eslint-eslint/docs/src/extend/scope-manager-interface.md: 364: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/eslint-eslint/docs/src/extend/scope-manager-interface.md: 365: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/eslint-eslint/docs/src/extend/scope-manager-interface.md: 366: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/eslint-eslint/docs/src/extend/scope-manager-interface.md: 367: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/eslint-eslint/docs/src/extend/scope-manager-interface.md: 376: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/eslint-eslint/docs/src/extend/scope-manager-interface.md: 377: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/eslint-eslint/docs/src/extend/scope-manager-interface.md: 378: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/eslint-eslint/docs/src/extend/scope-manager-interface.md: 379: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/eslint-eslint/docs/src/extend/scope-manager-interface.md: 380: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/eslint-eslint/docs/src/extend/scope-manager-interface.md: 381: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/eslint-eslint/docs/src/extend/scope-manager-interface.md: 382: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]` ## https://github.com/mdn/content @@ -40,7 +494,126 @@ Generated by [AVA](https://avajs.dev). > Expected linting violations - '' + `test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1114: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1114: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected trailing pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1115: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1115: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected trailing pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1116: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1116: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected trailing pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1117: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1117: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected trailing pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1118: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1118: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected trailing pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1412: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1412: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected trailing pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1413: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1413: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected trailing pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1414: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1414: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected trailing pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1415: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1415: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected trailing pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1416: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1416: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected trailing pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1417: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1417: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected trailing pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1418: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1418: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected trailing pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1419: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1419: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected trailing pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1420: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1420: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected trailing pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1421: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1421: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected trailing pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1428: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1428: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected trailing pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1429: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1429: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected trailing pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1430: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1430: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected trailing pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1431: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1431: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected trailing pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1432: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1432: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected trailing pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1433: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1433: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected trailing pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1434: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1434: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected trailing pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1435: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1435: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected trailing pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1436: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1436: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected trailing pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1437: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1437: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected trailing pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1438: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1438: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected trailing pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1439: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1439: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected trailing pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1440: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1440: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected trailing pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1441: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1441: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected trailing pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1442: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1442: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected trailing pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1509: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1509: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected trailing pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1510: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1510: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected trailing pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1511: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1511: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected trailing pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1512: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1512: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected trailing pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1513: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1513: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected trailing pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1514: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1514: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected trailing pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1515: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1515: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected trailing pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1516: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1516: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected trailing pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1517: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1517: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected trailing pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1518: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1518: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected trailing pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1562: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1562: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected trailing pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1563: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1563: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected trailing pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1564: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1564: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected trailing pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1565: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1565: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected trailing pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1566: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1566: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected trailing pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1567: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1567: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected trailing pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1568: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1568: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected trailing pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1569: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1569: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected trailing pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1570: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1570: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected trailing pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1571: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1571: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected trailing pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1572: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1572: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected trailing pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1573: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1573: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected trailing pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1574: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1574: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected trailing pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1575: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1575: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected trailing pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1576: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/mkdocs-mkdocs/docs/about/release-notes.md: 1576: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected trailing pipe]␊ + test-repos/mkdocs-mkdocs/docs/user-guide/configuration.md: 1026: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/mkdocs-mkdocs/docs/user-guide/configuration.md: 1026: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected trailing pipe]␊ + test-repos/mkdocs-mkdocs/docs/user-guide/configuration.md: 1027: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/mkdocs-mkdocs/docs/user-guide/configuration.md: 1027: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected trailing pipe]␊ + test-repos/mkdocs-mkdocs/docs/user-guide/configuration.md: 1028: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/mkdocs-mkdocs/docs/user-guide/configuration.md: 1028: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected trailing pipe]␊ + test-repos/mkdocs-mkdocs/docs/user-guide/configuration.md: 1029: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/mkdocs-mkdocs/docs/user-guide/configuration.md: 1029: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected trailing pipe]␊ + test-repos/mkdocs-mkdocs/docs/user-guide/configuration.md: 1030: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected leading pipe]␊ + test-repos/mkdocs-mkdocs/docs/user-guide/configuration.md: 1030: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected trailing pipe]` ## https://github.com/mochajs/mocha @@ -81,19 +654,336 @@ Generated by [AVA](https://avajs.dev). > Expected linting violations - '' + `test-repos/pi-hole-docs/docs/core/pihole-command.md: 8: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 8: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 9: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 9: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 10: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 10: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 17: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 17: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 18: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 18: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 19: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 19: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 20: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 20: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 21: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 21: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 22: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 22: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 23: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 23: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 24: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 24: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 25: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 25: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 26: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 26: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 27: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 27: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 28: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 28: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 29: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 29: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 30: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 30: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 31: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 31: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 32: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 32: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 33: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 33: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 34: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 34: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 35: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 35: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 40: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 40: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 41: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 41: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 42: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 42: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 43: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 43: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 50: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 50: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 51: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 51: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 52: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 52: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 53: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 53: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 68: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 68: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 69: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 69: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 70: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 70: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 71: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 71: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 78: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 78: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 79: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 79: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 80: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 80: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 81: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 81: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 88: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 88: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 89: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 89: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 90: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 90: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 91: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 91: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 105: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 105: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 106: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 106: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 107: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 107: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 108: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 108: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 115: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 115: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 116: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 116: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 117: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 117: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 118: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 118: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 125: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 125: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 126: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 126: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 127: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 127: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 128: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 128: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 143: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 143: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 144: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 144: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 145: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 145: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 146: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 146: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 163: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 163: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 164: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 164: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 165: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 165: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 166: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 166: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 173: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 173: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 174: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 174: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 175: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 175: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 176: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 176: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 189: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 189: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 190: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 190: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 191: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 191: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 192: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 192: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 205: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 205: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 206: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 206: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 207: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 207: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 208: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 208: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 215: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 215: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 216: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 216: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 217: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 217: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 218: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 218: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 225: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 225: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 226: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 226: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 227: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 227: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 228: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 228: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 235: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 235: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 236: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 236: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 237: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 237: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 238: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 238: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 245: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 245: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 246: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 246: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 247: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 247: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 248: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 248: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 255: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 255: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 256: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 256: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 257: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 257: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 258: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 258: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 267: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 267: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 268: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 268: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 269: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 269: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 270: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 270: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 271: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 271: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 272: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 272: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 277: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 277: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 278: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 278: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 279: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 279: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 280: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 280: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 287: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 287: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 288: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 288: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 289: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 289: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 290: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 290: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 297: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 297: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 298: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 298: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 299: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 299: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 300: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 300: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 307: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 307: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 308: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 308: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 309: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 309: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 310: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 310: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 317: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 317: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 318: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 318: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 319: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 319: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 320: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/pi-hole-docs/docs/core/pihole-command.md: 320: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]` ## https://github.com/v8/v8.dev > Expected linting violations - `test-repos/v8-v8-dev/src/docs/become-committer.md: 32: MD034/no-bare-urls Bare URL used [Context: "v8-committers@googlegroups.com"]␊ + `test-repos/v8-v8-dev/src/blog/fast-for-in.md: 278: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/v8-v8-dev/src/blog/fast-for-in.md: 278: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/v8-v8-dev/src/blog/fast-for-in.md: 370: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/v8-v8-dev/src/blog/fast-for-in.md: 370: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/v8-v8-dev/src/blog/lazy-unlinking.md: 189: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/v8-v8-dev/src/blog/lazy-unlinking.md: 189: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/v8-v8-dev/src/blog/maglev.md: 147: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/v8-v8-dev/src/blog/maglev.md: 147: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + 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: 89: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md: 89: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; 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: 140: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md: 140: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; 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: 203: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md: 203: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + 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/react-cliff.md: 88: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/v8-v8-dev/src/blog/react-cliff.md: 88: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/v8-v8-dev/src/blog/understanding-ecmascript-part-1.md: 118: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/v8-v8-dev/src/blog/understanding-ecmascript-part-1.md: 118: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/v8-v8-dev/src/blog/v8-release-80.md: 54: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/v8-v8-dev/src/blog/v8-release-80.md: 54: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/v8-v8-dev/src/docs/become-committer.md: 32: MD034/no-bare-urls Bare URL used [Context: "v8-committers@googlegroups.com"]␊ 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/feature-launch-process.md: 7: MD034/no-bare-urls Bare URL used [Context: "hablich@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/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: 46: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/v8-v8-dev/src/docs/respectful-code.md: 46: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ 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]␊ @@ -116,6 +1006,8 @@ Generated by [AVA](https://avajs.dev). 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/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: 81: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/v8-v8-dev/src/features/intl-listformat.md: 81: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ 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]␊ @@ -139,6 +1031,8 @@ Generated by [AVA](https://avajs.dev). 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: 29: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/v8-v8-dev/src/features/promise-combinators.md: 29: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ 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]␊ diff --git a/test/snapshots/markdownlint-test-repos.js.snap b/test/snapshots/markdownlint-test-repos.js.snap index 339a22de..0284ccf5 100644 Binary files a/test/snapshots/markdownlint-test-repos.js.snap and b/test/snapshots/markdownlint-test-repos.js.snap differ diff --git a/test/snapshots/markdownlint-test-scenarios.js.md b/test/snapshots/markdownlint-test-scenarios.js.md index a821c244..037440a1 100644 --- a/test/snapshots/markdownlint-test-scenarios.js.md +++ b/test/snapshots/markdownlint-test-scenarios.js.md @@ -7208,7 +7208,7 @@ Generated by [AVA](https://avajs.dev). insertText: `␊ `, }, - lineNumber: 126, + lineNumber: 130, ruleDescription: 'Files should end with a single newline character', ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md047.md', ruleNames: [ @@ -7379,6 +7379,22 @@ Generated by [AVA](https://avajs.dev). 'link-image-style', ], }, + { + errorContext: null, + errorDetail: 'Expected: leading_and_trailing; Actual: trailing_only; Missing leading pipe', + errorRange: [ + 2, + 1, + ], + fixInfo: null, + lineNumber: 110, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, ], fixed: `## Heading 1 {MD041:1}␊ ␊ @@ -7488,6 +7504,10 @@ Generated by [AVA](https://avajs.dev). ␊ [url]: https://example.com/page␊ ␊ + | table | header |␊ + |--------|--------|␊ + {MD055} | cell |␊ + ␊ |␊ | cell | cell |␊ + ␊ + ␊ `, } @@ -36769,7 +36793,7 @@ Generated by [AVA](https://avajs.dev). 48, ], fixInfo: null, - lineNumber: 34, + lineNumber: 33, ruleDescription: 'Line length', ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md013.md', ruleNames: [ @@ -36809,7 +36833,6 @@ Generated by [AVA](https://avajs.dev). | Content Cell | Content Cell | Content Cell | Content Cell | Content Cell | Content Cell |␊ | ============== | ============== | ============== | ============== | ============== | ============== |␊ | Footer Cell | Footer Cell | Footer Cell | Footer Cell | Footer Cell | Footer Cell |␊ - {: rules="groups"}␊ ␊ This is a very very very very very very very very very very very very very very very very very very very very long line. {MD013}␊ ␊ @@ -36824,7 +36847,6 @@ Generated by [AVA](https://avajs.dev). | Content Cell | Content Cell | Content Cell | Content Cell | Content Cell | Content Cell |␊ | ============== | ============== | ============== | ============== | ============== | ============== |␊ | Footer Cell | Footer Cell | Footer Cell | Footer Cell | Footer Cell | Footer Cell |␊ - {: rules="groups"}␊ ␊ ␊ `, } @@ -51195,6 +51221,2722 @@ Generated by [AVA](https://avajs.dev). `, } +## table-pipe-style-explicit-both.md + +> Snapshot 1 + + { + errors: [ + { + errorContext: null, + errorDetail: 'Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 11, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe', + errorRange: [ + 15, + 1, + ], + fixInfo: null, + lineNumber: 11, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 12, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe', + errorRange: [ + 15, + 1, + ], + fixInfo: null, + lineNumber: 12, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 13, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe', + errorRange: [ + 12, + 1, + ], + fixInfo: null, + lineNumber: 13, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe', + errorRange: [ + 17, + 1, + ], + fixInfo: null, + lineNumber: 17, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe', + errorRange: [ + 17, + 1, + ], + fixInfo: null, + lineNumber: 18, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe', + errorRange: [ + 14, + 1, + ], + fixInfo: null, + lineNumber: 19, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_and_trailing; Actual: trailing_only; Missing leading pipe', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 23, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_and_trailing; Actual: trailing_only; Missing leading pipe', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 24, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_and_trailing; Actual: trailing_only; Missing leading pipe', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 25, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + ], + fixed: `# Table Pipe Style Explicit Both␊ + ␊ + ## Style: both␊ + ␊ + | Table | Heading |␊ + | ----- | ------- |␊ + | Cell | Cell |␊ + ␊ + ## Style: none {MD055:+2} {MD055:+3} {MD055:+4}␊ + ␊ + Table | Heading␊ + ----- | -------␊ + Cell | Cell␊ + ␊ + ## Style: leading {MD055:+2} {MD055:+3} {MD055:+4}␊ + ␊ + | Table | Heading␊ + | ----- | -------␊ + | Cell | Cell␊ + ␊ + ## Style: trailing {MD055:+2} {MD055:+3} {MD055:+4}␊ + ␊ + Table | Heading |␊ + ----- | ------- |␊ + Cell | Cell |␊ + ␊ + ␊ + `, + } + +## table-pipe-style-explicit-leading.md + +> Snapshot 1 + + { + errors: [ + { + errorContext: null, + errorDetail: 'Expected: leading_only; Actual: leading_and_trailing; Unexpected trailing pipe', + errorRange: [ + 19, + 1, + ], + fixInfo: null, + lineNumber: 5, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_only; Actual: leading_and_trailing; Unexpected trailing pipe', + errorRange: [ + 19, + 1, + ], + fixInfo: null, + lineNumber: 6, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_only; Actual: leading_and_trailing; Unexpected trailing pipe', + errorRange: [ + 19, + 1, + ], + fixInfo: null, + lineNumber: 7, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_only; Actual: no_leading_or_trailing; Missing leading pipe', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 11, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_only; Actual: no_leading_or_trailing; Missing leading pipe', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 12, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_only; Actual: no_leading_or_trailing; Missing leading pipe', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 13, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_only; Actual: trailing_only; Missing leading pipe', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 23, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_only; Actual: trailing_only; Unexpected trailing pipe', + errorRange: [ + 17, + 1, + ], + fixInfo: null, + lineNumber: 23, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_only; Actual: trailing_only; Missing leading pipe', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 24, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_only; Actual: trailing_only; Unexpected trailing pipe', + errorRange: [ + 17, + 1, + ], + fixInfo: null, + lineNumber: 24, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_only; Actual: trailing_only; Missing leading pipe', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 25, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_only; Actual: trailing_only; Unexpected trailing pipe', + errorRange: [ + 17, + 1, + ], + fixInfo: null, + lineNumber: 25, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + ], + fixed: `# Table Pipe Style Explicit Leading␊ + ␊ + ## Style: both {MD055:+2} {MD055:+3} {MD055:+4}␊ + ␊ + | Table | Heading |␊ + | ----- | ------- |␊ + | Cell | Cell |␊ + ␊ + ## Style: none {MD055:+2} {MD055:+3} {MD055:+4}␊ + ␊ + Table | Heading␊ + ----- | -------␊ + Cell | Cell␊ + ␊ + ## Style: leading␊ + ␊ + | Table | Heading␊ + | ----- | -------␊ + | Cell | Cell␊ + ␊ + ## Style: trailing {MD055:+2} {MD055:+3} {MD055:+4}␊ + ␊ + Table | Heading |␊ + ----- | ------- |␊ + Cell | Cell |␊ + ␊ + ␊ + `, + } + +## table-pipe-style-explicit-none.md + +> Snapshot 1 + + { + errors: [ + { + errorContext: null, + errorDetail: 'Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected leading pipe', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 5, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected trailing pipe', + errorRange: [ + 19, + 1, + ], + fixInfo: null, + lineNumber: 5, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected leading pipe', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 6, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected trailing pipe', + errorRange: [ + 19, + 1, + ], + fixInfo: null, + lineNumber: 6, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected leading pipe', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 7, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected trailing pipe', + errorRange: [ + 19, + 1, + ], + fixInfo: null, + lineNumber: 7, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: no_leading_or_trailing; Actual: leading_only; Unexpected leading pipe', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 17, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: no_leading_or_trailing; Actual: leading_only; Unexpected leading pipe', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 18, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: no_leading_or_trailing; Actual: leading_only; Unexpected leading pipe', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 19, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: no_leading_or_trailing; Actual: trailing_only; Unexpected trailing pipe', + errorRange: [ + 17, + 1, + ], + fixInfo: null, + lineNumber: 23, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: no_leading_or_trailing; Actual: trailing_only; Unexpected trailing pipe', + errorRange: [ + 17, + 1, + ], + fixInfo: null, + lineNumber: 24, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: no_leading_or_trailing; Actual: trailing_only; Unexpected trailing pipe', + errorRange: [ + 17, + 1, + ], + fixInfo: null, + lineNumber: 25, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + ], + fixed: `# Table Pipe Style Explicit None␊ + ␊ + ## Style: both {MD055:+2} {MD055:+3} {MD055:+4}␊ + ␊ + | Table | Heading |␊ + | ----- | ------- |␊ + | Cell | Cell |␊ + ␊ + ## Style: none␊ + ␊ + Table | Heading␊ + ----- | -------␊ + Cell | Cell␊ + ␊ + ## Style: leading {MD055:+2} {MD055:+3} {MD055:+4}␊ + ␊ + | Table | Heading␊ + | ----- | -------␊ + | Cell | Cell␊ + ␊ + ## Style: trailing {MD055:+2} {MD055:+3} {MD055:+4}␊ + ␊ + Table | Heading |␊ + ----- | ------- |␊ + Cell | Cell |␊ + ␊ + ␊ + `, + } + +## table-pipe-style-explicit-trailing.md + +> Snapshot 1 + + { + errors: [ + { + errorContext: null, + errorDetail: 'Expected: trailing_only; Actual: leading_and_trailing; Unexpected leading pipe', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 5, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: trailing_only; Actual: leading_and_trailing; Unexpected leading pipe', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 6, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: trailing_only; Actual: leading_and_trailing; Unexpected leading pipe', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 7, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: trailing_only; Actual: no_leading_or_trailing; Missing trailing pipe', + errorRange: [ + 15, + 1, + ], + fixInfo: null, + lineNumber: 11, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: trailing_only; Actual: no_leading_or_trailing; Missing trailing pipe', + errorRange: [ + 15, + 1, + ], + fixInfo: null, + lineNumber: 12, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: trailing_only; Actual: no_leading_or_trailing; Missing trailing pipe', + errorRange: [ + 12, + 1, + ], + fixInfo: null, + lineNumber: 13, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: trailing_only; Actual: leading_only; Unexpected leading pipe', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 17, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: trailing_only; Actual: leading_only; Missing trailing pipe', + errorRange: [ + 17, + 1, + ], + fixInfo: null, + lineNumber: 17, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: trailing_only; Actual: leading_only; Unexpected leading pipe', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 18, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: trailing_only; Actual: leading_only; Missing trailing pipe', + errorRange: [ + 17, + 1, + ], + fixInfo: null, + lineNumber: 18, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: trailing_only; Actual: leading_only; Unexpected leading pipe', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 19, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: trailing_only; Actual: leading_only; Missing trailing pipe', + errorRange: [ + 14, + 1, + ], + fixInfo: null, + lineNumber: 19, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + ], + fixed: `# Table Pipe Style Explicit Trailing␊ + ␊ + ## Style: both {MD055:+2} {MD055:+3} {MD055:+4}␊ + ␊ + | Table | Heading |␊ + | ----- | ------- |␊ + | Cell | Cell |␊ + ␊ + ## Style: none {MD055:+2} {MD055:+3} {MD055:+4}␊ + ␊ + Table | Heading␊ + ----- | -------␊ + Cell | Cell␊ + ␊ + ## Style: leading {MD055:+2} {MD055:+3} {MD055:+4}␊ + ␊ + | Table | Heading␊ + | ----- | -------␊ + | Cell | Cell␊ + ␊ + ## Style: trailing␊ + ␊ + Table | Heading |␊ + ----- | ------- |␊ + Cell | Cell |␊ + ␊ + ␊ + `, + } + +## table-pipe-style-implicit-both.md + +> Snapshot 1 + + { + errors: [ + { + errorContext: null, + errorDetail: 'Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 11, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe', + errorRange: [ + 15, + 1, + ], + fixInfo: null, + lineNumber: 11, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 12, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe', + errorRange: [ + 15, + 1, + ], + fixInfo: null, + lineNumber: 12, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 13, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe', + errorRange: [ + 12, + 1, + ], + fixInfo: null, + lineNumber: 13, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe', + errorRange: [ + 17, + 1, + ], + fixInfo: null, + lineNumber: 17, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe', + errorRange: [ + 17, + 1, + ], + fixInfo: null, + lineNumber: 18, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe', + errorRange: [ + 14, + 1, + ], + fixInfo: null, + lineNumber: 19, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_and_trailing; Actual: trailing_only; Missing leading pipe', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 23, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_and_trailing; Actual: trailing_only; Missing leading pipe', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 24, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_and_trailing; Actual: trailing_only; Missing leading pipe', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 25, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + ], + fixed: `# Table Pipe Style Implicit Both␊ + ␊ + ## Style: both␊ + ␊ + | Table | Heading |␊ + | ----- | ------- |␊ + | Cell | Cell |␊ + ␊ + ## Style: none {MD055:+2} {MD055:+3} {MD055:+4}␊ + ␊ + Table | Heading␊ + ----- | -------␊ + Cell | Cell␊ + ␊ + ## Style: leading {MD055:+2} {MD055:+3} {MD055:+4}␊ + ␊ + | Table | Heading␊ + | ----- | -------␊ + | Cell | Cell␊ + ␊ + ## Style: trailing {MD055:+2} {MD055:+3} {MD055:+4}␊ + ␊ + Table | Heading |␊ + ----- | ------- |␊ + Cell | Cell |␊ + `, + } + +## table-pipe-style-implicit-leading.md + +> Snapshot 1 + + { + errors: [ + { + errorContext: null, + errorDetail: 'Expected: leading_only; Actual: leading_and_trailing; Unexpected trailing pipe', + errorRange: [ + 19, + 1, + ], + fixInfo: null, + lineNumber: 11, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_only; Actual: leading_and_trailing; Unexpected trailing pipe', + errorRange: [ + 19, + 1, + ], + fixInfo: null, + lineNumber: 12, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_only; Actual: leading_and_trailing; Unexpected trailing pipe', + errorRange: [ + 19, + 1, + ], + fixInfo: null, + lineNumber: 13, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_only; Actual: no_leading_or_trailing; Missing leading pipe', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 17, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_only; Actual: no_leading_or_trailing; Missing leading pipe', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 18, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_only; Actual: no_leading_or_trailing; Missing leading pipe', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 19, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_only; Actual: trailing_only; Missing leading pipe', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 23, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_only; Actual: trailing_only; Unexpected trailing pipe', + errorRange: [ + 17, + 1, + ], + fixInfo: null, + lineNumber: 23, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_only; Actual: trailing_only; Missing leading pipe', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 24, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_only; Actual: trailing_only; Unexpected trailing pipe', + errorRange: [ + 17, + 1, + ], + fixInfo: null, + lineNumber: 24, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_only; Actual: trailing_only; Missing leading pipe', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 25, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_only; Actual: trailing_only; Unexpected trailing pipe', + errorRange: [ + 17, + 1, + ], + fixInfo: null, + lineNumber: 25, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + ], + fixed: `# Table Pipe Style Implicit Leading␊ + ␊ + ## Style: leading␊ + ␊ + | Table | Heading␊ + | ----- | -------␊ + | Cell | Cell␊ + ␊ + ## Style: both {MD055:+2} {MD055:+3} {MD055:+4}␊ + ␊ + | Table | Heading |␊ + | ----- | ------- |␊ + | Cell | Cell |␊ + ␊ + ## Style: none {MD055:+2} {MD055:+3} {MD055:+4}␊ + ␊ + Table | Heading␊ + ----- | -------␊ + Cell | Cell␊ + ␊ + ## Style: trailing {MD055:+2} {MD055:+3} {MD055:+4}␊ + ␊ + Table | Heading |␊ + ----- | ------- |␊ + Cell | Cell |␊ + `, + } + +## table-pipe-style-implicit-none.md + +> Snapshot 1 + + { + errors: [ + { + errorContext: null, + errorDetail: 'Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected leading pipe', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 11, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected trailing pipe', + errorRange: [ + 19, + 1, + ], + fixInfo: null, + lineNumber: 11, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected leading pipe', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 12, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected trailing pipe', + errorRange: [ + 19, + 1, + ], + fixInfo: null, + lineNumber: 12, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected leading pipe', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 13, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: no_leading_or_trailing; Actual: leading_and_trailing; Unexpected trailing pipe', + errorRange: [ + 19, + 1, + ], + fixInfo: null, + lineNumber: 13, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: no_leading_or_trailing; Actual: leading_only; Unexpected leading pipe', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 17, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: no_leading_or_trailing; Actual: leading_only; Unexpected leading pipe', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 18, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: no_leading_or_trailing; Actual: leading_only; Unexpected leading pipe', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 19, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: no_leading_or_trailing; Actual: trailing_only; Unexpected trailing pipe', + errorRange: [ + 17, + 1, + ], + fixInfo: null, + lineNumber: 23, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: no_leading_or_trailing; Actual: trailing_only; Unexpected trailing pipe', + errorRange: [ + 17, + 1, + ], + fixInfo: null, + lineNumber: 24, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: no_leading_or_trailing; Actual: trailing_only; Unexpected trailing pipe', + errorRange: [ + 17, + 1, + ], + fixInfo: null, + lineNumber: 25, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + ], + fixed: `# Table Pipe Style Implicit None␊ + ␊ + ## Style: none␊ + ␊ + Table | Heading␊ + ----- | -------␊ + Cell | Cell␊ + ␊ + ## Style: both {MD055:+2} {MD055:+3} {MD055:+4}␊ + ␊ + | Table | Heading |␊ + | ----- | ------- |␊ + | Cell | Cell |␊ + ␊ + ## Style: leading {MD055:+2} {MD055:+3} {MD055:+4}␊ + ␊ + | Table | Heading␊ + | ----- | -------␊ + | Cell | Cell␊ + ␊ + ## Style: trailing {MD055:+2} {MD055:+3} {MD055:+4}␊ + ␊ + Table | Heading |␊ + ----- | ------- |␊ + Cell | Cell |␊ + `, + } + +## table-pipe-style-implicit-trailing.md + +> Snapshot 1 + + { + errors: [ + { + errorContext: null, + errorDetail: 'Expected: trailing_only; Actual: leading_and_trailing; Unexpected leading pipe', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 11, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: trailing_only; Actual: leading_and_trailing; Unexpected leading pipe', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 12, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: trailing_only; Actual: leading_and_trailing; Unexpected leading pipe', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 13, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: trailing_only; Actual: no_leading_or_trailing; Missing trailing pipe', + errorRange: [ + 15, + 1, + ], + fixInfo: null, + lineNumber: 17, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: trailing_only; Actual: no_leading_or_trailing; Missing trailing pipe', + errorRange: [ + 15, + 1, + ], + fixInfo: null, + lineNumber: 18, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: trailing_only; Actual: no_leading_or_trailing; Missing trailing pipe', + errorRange: [ + 12, + 1, + ], + fixInfo: null, + lineNumber: 19, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: trailing_only; Actual: leading_only; Unexpected leading pipe', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 23, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: trailing_only; Actual: leading_only; Missing trailing pipe', + errorRange: [ + 17, + 1, + ], + fixInfo: null, + lineNumber: 23, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: trailing_only; Actual: leading_only; Unexpected leading pipe', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 24, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: trailing_only; Actual: leading_only; Missing trailing pipe', + errorRange: [ + 17, + 1, + ], + fixInfo: null, + lineNumber: 24, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: trailing_only; Actual: leading_only; Unexpected leading pipe', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 25, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: trailing_only; Actual: leading_only; Missing trailing pipe', + errorRange: [ + 14, + 1, + ], + fixInfo: null, + lineNumber: 25, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + ], + fixed: `# Table Pipe Style Implicit Trailing␊ + ␊ + ## Style: trailing␊ + ␊ + Table | Heading |␊ + ----- | ------- |␊ + Cell | Cell |␊ + ␊ + ## Style: both {MD055:+2} {MD055:+3} {MD055:+4}␊ + ␊ + | Table | Heading |␊ + | ----- | ------- |␊ + | Cell | Cell |␊ + ␊ + ## Style: none {MD055:+2} {MD055:+3} {MD055:+4}␊ + ␊ + Table | Heading␊ + ----- | -------␊ + Cell | Cell␊ + ␊ + ## Style: leading {MD055:+2} {MD055:+3} {MD055:+4}␊ + ␊ + | Table | Heading␊ + | ----- | -------␊ + | Cell | Cell␊ + `, + } + +## table-pipe-style.md + +> Snapshot 1 + + { + errors: [ + { + errorContext: null, + errorDetail: 'Expected: 0 or 2; Actual: 1', + errorRange: [ + 21, + 1, + ], + fixInfo: { + deleteCount: 1, + editColumn: 21, + }, + lineNumber: 148, + ruleDescription: 'Trailing spaces', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md009.md', + ruleNames: [ + 'MD009', + 'no-trailing-spaces', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: 0 or 2; Actual: 1', + errorRange: [ + 21, + 1, + ], + fixInfo: { + deleteCount: 1, + editColumn: 21, + }, + lineNumber: 150, + ruleDescription: 'Trailing spaces', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md009.md', + ruleNames: [ + 'MD009', + 'no-trailing-spaces', + ], + }, + { + errorContext: '> {MD055} | {MD027} |', + errorDetail: null, + errorRange: [ + 1, + 5, + ], + fixInfo: { + deleteCount: 2, + editColumn: 2, + }, + lineNumber: 132, + 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: '> {MD055} | {MD027} |', + errorDetail: null, + errorRange: [ + 1, + 5, + ], + fixInfo: { + deleteCount: 2, + editColumn: 2, + }, + lineNumber: 132, + 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: 'Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe', + errorRange: [ + 17, + 1, + ], + fixInfo: null, + lineNumber: 11, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_and_trailing; Actual: trailing_only; Missing leading pipe', + errorRange: [ + 3, + 1, + ], + fixInfo: null, + lineNumber: 14, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe', + errorRange: [ + 3, + 1, + ], + fixInfo: null, + lineNumber: 17, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe', + errorRange: [ + 17, + 1, + ], + fixInfo: null, + lineNumber: 17, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe', + errorRange: [ + 18, + 1, + ], + fixInfo: null, + lineNumber: 23, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_and_trailing; Actual: trailing_only; Missing leading pipe', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 28, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 33, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe', + errorRange: [ + 18, + 1, + ], + fixInfo: null, + lineNumber: 33, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe', + errorRange: [ + 2, + 1, + ], + fixInfo: null, + lineNumber: 39, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe', + errorRange: [ + 18, + 1, + ], + fixInfo: null, + lineNumber: 39, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 40, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe', + errorRange: [ + 19, + 1, + ], + fixInfo: null, + lineNumber: 40, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe', + errorRange: [ + 2, + 1, + ], + fixInfo: null, + lineNumber: 41, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe', + errorRange: [ + 15, + 1, + ], + fixInfo: null, + lineNumber: 41, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe', + errorRange: [ + 2, + 1, + ], + fixInfo: null, + lineNumber: 45, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe', + errorRange: [ + 18, + 1, + ], + fixInfo: null, + lineNumber: 45, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 46, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe', + errorRange: [ + 19, + 1, + ], + fixInfo: null, + lineNumber: 46, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe', + errorRange: [ + 2, + 1, + ], + fixInfo: null, + lineNumber: 47, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe', + errorRange: [ + 15, + 1, + ], + fixInfo: null, + lineNumber: 47, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe', + errorRange: [ + 3, + 1, + ], + fixInfo: null, + lineNumber: 53, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe', + errorRange: [ + 16, + 1, + ], + fixInfo: null, + lineNumber: 53, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe', + errorRange: [ + 3, + 1, + ], + fixInfo: null, + lineNumber: 57, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe', + errorRange: [ + 16, + 1, + ], + fixInfo: null, + lineNumber: 57, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe', + errorRange: [ + 3, + 1, + ], + fixInfo: null, + lineNumber: 64, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe', + errorRange: [ + 16, + 1, + ], + fixInfo: null, + lineNumber: 64, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe', + errorRange: [ + 3, + 1, + ], + fixInfo: null, + lineNumber: 71, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe', + errorRange: [ + 16, + 1, + ], + fixInfo: null, + lineNumber: 71, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe', + errorRange: [ + 16, + 1, + ], + fixInfo: null, + lineNumber: 77, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe', + errorRange: [ + 16, + 1, + ], + fixInfo: null, + lineNumber: 81, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe', + errorRange: [ + 16, + 1, + ], + fixInfo: null, + lineNumber: 88, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe', + errorRange: [ + 16, + 1, + ], + fixInfo: null, + lineNumber: 95, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_and_trailing; Actual: trailing_only; Missing leading pipe', + errorRange: [ + 3, + 1, + ], + fixInfo: null, + lineNumber: 101, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_and_trailing; Actual: trailing_only; Missing leading pipe', + errorRange: [ + 3, + 1, + ], + fixInfo: null, + lineNumber: 105, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_and_trailing; Actual: trailing_only; Missing leading pipe', + errorRange: [ + 3, + 1, + ], + fixInfo: null, + lineNumber: 112, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_and_trailing; Actual: trailing_only; Missing leading pipe', + errorRange: [ + 3, + 1, + ], + fixInfo: null, + lineNumber: 119, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 126, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe', + errorRange: [ + 12, + 1, + ], + fixInfo: null, + lineNumber: 126, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe', + errorRange: [ + 21, + 1, + ], + fixInfo: null, + lineNumber: 130, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_and_trailing; Actual: trailing_only; Missing leading pipe', + errorRange: [ + 5, + 1, + ], + fixInfo: null, + lineNumber: 132, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + ], + fixed: `# Table Pipe Style␊ + ␊ + ␊ + ␊ + ## Missing in Heading Row␊ + ␊ + | Table | {MD055}␊ + |-------|---------|␊ + ␊ + Table | {MD055} |␊ + |-------|---------|␊ + ␊ + Table | {MD055}␊ + |-------|---------|␊ + ␊ + ## Missing in Separator Row␊ + ␊ + | Table | Heading |␊ + |-------|---------␊ + ␊ + {MD055:-2}␊ + ␊ + | Table | Heading |␊ + -------|---------|␊ + ␊ + {MD055:-2}␊ + ␊ + | Table | Heading |␊ + -------|---------␊ + ␊ + {MD055:-2}␊ + ␊ + ## Missing Leading and Trailing␊ + ␊ + {MD055} | Heading␊ + ---------|---------␊ + {MD055} | Cell␊ + ␊ + {MD055:-3}␊ + ␊ + {MD055} | Heading␊ + --------:|:-------:␊ + {MD055} | Cell␊ + ␊ + {MD055:-3}␊ + ␊ + | Table | Heading |␊ + |--------:|:--------|␊ + {MD055} | Cell␊ + ␊ + | Table | Heading |␊ + |---------|---------|␊ + {MD055} | Cell␊ + | Cell | Cell |␊ + | Cell | Cell |␊ + ␊ + | Table | Heading |␊ + |---------|---------|␊ + | Cell | Cell |␊ + {MD055} | Cell␊ + | Cell | Cell |␊ + ␊ + | Table | Heading |␊ + |---------|---------|␊ + | Cell | Cell |␊ + | Cell | Cell |␊ + {MD055} | Cell␊ + ␊ + ## Missing Trailing␊ + ␊ + | Table | Heading |␊ + |--------:|:--------|␊ + | {MD055} | Cell␊ + ␊ + | Table | Heading |␊ + |---------|---------|␊ + | {MD055} | Cell␊ + | Cell | Cell |␊ + | Cell | Cell |␊ + ␊ + | Table | Heading |␊ + |---------|---------|␊ + | Cell | Cell |␊ + | {MD055} | Cell␊ + | Cell | Cell |␊ + ␊ + | Table | Heading |␊ + |---------|---------|␊ + | Cell | Cell |␊ + | Cell | Cell |␊ + | {MD055} | Cell␊ + ␊ + ## Missing Leading␊ + ␊ + | Table | Heading |␊ + |--------:|:--------|␊ + {MD055} | Cell |␊ + ␊ + | Table | Heading |␊ + |---------|---------|␊ + {MD055} | Cell |␊ + | Cell | Cell |␊ + | Cell | Cell |␊ + ␊ + | Table | Heading |␊ + |---------|---------|␊ + | Cell | Cell |␊ + {MD055} | Cell |␊ + | Cell | Cell |␊ + ␊ + | Table | Heading |␊ + |---------|---------|␊ + | Cell | Cell |␊ + | Cell | Cell |␊ + {MD055} | Cell |␊ + ␊ + ## Followed by Text␊ + ␊ + | Table | Heading |␊ + |-------|---------|␊ + | Cell | Cell |␊ + {MD055} Text␊ + ␊ + ## Table inside Blockquote␊ + ␊ + > | Table | {MD055}␊ + > |---------|---------|␊ + > {MD055} | {MD027} |␊ + ␊ + ## Well-Formed␊ + ␊ + | Table | Heading |␊ + |-------|---------|␊ + | Cell | Cell |␊ + ␊ + | Table | Heading |␊ + |-------|---------|␊ + | Cell | Cell |␊ + | Cell | Cell |␊ + | Cell | Cell |␊ + ␊ + ## Leading and Trailing Spaces␊ + ␊ + | Table | {MD009} |␊ + |-------|---------|␊ + | Cell | {MD009} |␊ + `, + } + ## texmath-content-in-lists.md > Snapshot 1 diff --git a/test/snapshots/markdownlint-test-scenarios.js.snap b/test/snapshots/markdownlint-test-scenarios.js.snap index 3f2bd003..d6d62181 100644 Binary files a/test/snapshots/markdownlint-test-scenarios.js.snap and b/test/snapshots/markdownlint-test-scenarios.js.snap differ diff --git a/test/table-missing-pipes.md b/test/table-missing-pipes.md deleted file mode 100644 index 781d1ecd..00000000 --- a/test/table-missing-pipes.md +++ /dev/null @@ -1,140 +0,0 @@ -# Table Missing Pipes - -## Bad Header Row - -| Table | {MD055} -|-------|---------| - - Table | {MD055} | -|-------|---------| - - Table | {MD055} -|-------|---------| - -## Bad Separator Row - -| Table | Header | -|-------|--------- - -{MD055:17} - -| Table | Header | - -------|--------| - -{MD055:22} - -| Table | Header | - -------|-------- - -{MD055:27} - -## Missing everything - - {MD055} | Header ----------|------- - {MD055} | cell - -{MD055:34} - - {MD055} | Header ---------:|:-----: - {MD055} | cell - -{MD055:40} - -## Missing trailing pipe - -| Table | Header | -|--------:|:-------| -| {MD055} | cell - -| Table | Header | -|---------|--------| -| {MD055} | cell -| cell | cell | -| cell | cell | - -| Table | Header | -|---------|--------| -| cell | cell | -| {MD055} | cell -| cell | cell | - -| Table | Header | -|---------|--------| -| cell | cell | -| cell | cell | -| {MD055} | cell - -## Missing leading pipe - -| Table | Header | -|-------:|:-------| - {MD055} | cell | - -| Table | Header | -|--------|--------| - {MD055} | cell | -| cell | cell | -| cell | cell | - -| Table | Header | -|--------|--------| -| cell | cell | - {MD055} | cell | -| cell | cell | - -| Table | Header | -|--------|--------| -| cell | cell | -| cell | cell | - {MD055} | cell | - -## Missing both sides - -| Table | Header | -|-------:|:-------| - {MD055} | cell - -| Table | Header | -|--------|--------| - {MD055} | cell -| cell | cell | -| cell | cell | - -| Table | Header | -|--------|--------| -| cell | cell | - {MD055} | cell -| cell | cell | - -| Table | Header | -|--------|--------| -| cell | cell | -| cell | cell | - {MD055} | cell - -## No false-positive - -| Table | Header | -|-------|--------| -| cell | cell | - -| Table | Header | -|-------|--------| -| cell | cell | -| cell | cell | -| cell | cell | - -## No trailing blank line - -| Table | Header | -|-------|--------| -| cell | cell | -{MD055} Text - -## Markdown Combination - -> | Table | Header | -> |-------|--------| -> -{MD055}| cell | diff --git a/test/table-pipe-style-explicit-both.md b/test/table-pipe-style-explicit-both.md new file mode 100644 index 00000000..6dd95859 --- /dev/null +++ b/test/table-pipe-style-explicit-both.md @@ -0,0 +1,31 @@ +# Table Pipe Style Explicit Both + +## Style: both + +| Table | Heading | +| ----- | ------- | +| Cell | Cell | + +## Style: none {MD055:+2} {MD055:+3} {MD055:+4} + +Table | Heading +----- | ------- +Cell | Cell + +## Style: leading {MD055:+2} {MD055:+3} {MD055:+4} + +| Table | Heading +| ----- | ------- +| Cell | Cell + +## Style: trailing {MD055:+2} {MD055:+3} {MD055:+4} + +Table | Heading | +----- | ------- | +Cell | Cell | + + diff --git a/test/table-pipe-style-explicit-leading.md b/test/table-pipe-style-explicit-leading.md new file mode 100644 index 00000000..d33e55e6 --- /dev/null +++ b/test/table-pipe-style-explicit-leading.md @@ -0,0 +1,31 @@ +# Table Pipe Style Explicit Leading + +## Style: both {MD055:+2} {MD055:+3} {MD055:+4} + +| Table | Heading | +| ----- | ------- | +| Cell | Cell | + +## Style: none {MD055:+2} {MD055:+3} {MD055:+4} + +Table | Heading +----- | ------- +Cell | Cell + +## Style: leading + +| Table | Heading +| ----- | ------- +| Cell | Cell + +## Style: trailing {MD055:+2} {MD055:+3} {MD055:+4} + +Table | Heading | +----- | ------- | +Cell | Cell | + + diff --git a/test/table-pipe-style-explicit-none.md b/test/table-pipe-style-explicit-none.md new file mode 100644 index 00000000..512d9085 --- /dev/null +++ b/test/table-pipe-style-explicit-none.md @@ -0,0 +1,31 @@ +# Table Pipe Style Explicit None + +## Style: both {MD055:+2} {MD055:+3} {MD055:+4} + +| Table | Heading | +| ----- | ------- | +| Cell | Cell | + +## Style: none + +Table | Heading +----- | ------- +Cell | Cell + +## Style: leading {MD055:+2} {MD055:+3} {MD055:+4} + +| Table | Heading +| ----- | ------- +| Cell | Cell + +## Style: trailing {MD055:+2} {MD055:+3} {MD055:+4} + +Table | Heading | +----- | ------- | +Cell | Cell | + + diff --git a/test/table-pipe-style-explicit-trailing.md b/test/table-pipe-style-explicit-trailing.md new file mode 100644 index 00000000..211c7b5d --- /dev/null +++ b/test/table-pipe-style-explicit-trailing.md @@ -0,0 +1,31 @@ +# Table Pipe Style Explicit Trailing + +## Style: both {MD055:+2} {MD055:+3} {MD055:+4} + +| Table | Heading | +| ----- | ------- | +| Cell | Cell | + +## Style: none {MD055:+2} {MD055:+3} {MD055:+4} + +Table | Heading +----- | ------- +Cell | Cell + +## Style: leading {MD055:+2} {MD055:+3} {MD055:+4} + +| Table | Heading +| ----- | ------- +| Cell | Cell + +## Style: trailing + +Table | Heading | +----- | ------- | +Cell | Cell | + + diff --git a/test/table-pipe-style-implicit-both.md b/test/table-pipe-style-implicit-both.md new file mode 100644 index 00000000..1a3c8023 --- /dev/null +++ b/test/table-pipe-style-implicit-both.md @@ -0,0 +1,25 @@ +# Table Pipe Style Implicit Both + +## Style: both + +| Table | Heading | +| ----- | ------- | +| Cell | Cell | + +## Style: none {MD055:+2} {MD055:+3} {MD055:+4} + +Table | Heading +----- | ------- +Cell | Cell + +## Style: leading {MD055:+2} {MD055:+3} {MD055:+4} + +| Table | Heading +| ----- | ------- +| Cell | Cell + +## Style: trailing {MD055:+2} {MD055:+3} {MD055:+4} + +Table | Heading | +----- | ------- | +Cell | Cell | diff --git a/test/table-pipe-style-implicit-leading.md b/test/table-pipe-style-implicit-leading.md new file mode 100644 index 00000000..2d0a8307 --- /dev/null +++ b/test/table-pipe-style-implicit-leading.md @@ -0,0 +1,25 @@ +# Table Pipe Style Implicit Leading + +## Style: leading + +| Table | Heading +| ----- | ------- +| Cell | Cell + +## Style: both {MD055:+2} {MD055:+3} {MD055:+4} + +| Table | Heading | +| ----- | ------- | +| Cell | Cell | + +## Style: none {MD055:+2} {MD055:+3} {MD055:+4} + +Table | Heading +----- | ------- +Cell | Cell + +## Style: trailing {MD055:+2} {MD055:+3} {MD055:+4} + +Table | Heading | +----- | ------- | +Cell | Cell | diff --git a/test/table-pipe-style-implicit-none.md b/test/table-pipe-style-implicit-none.md new file mode 100644 index 00000000..3faa6de1 --- /dev/null +++ b/test/table-pipe-style-implicit-none.md @@ -0,0 +1,25 @@ +# Table Pipe Style Implicit None + +## Style: none + +Table | Heading +----- | ------- +Cell | Cell + +## Style: both {MD055:+2} {MD055:+3} {MD055:+4} + +| Table | Heading | +| ----- | ------- | +| Cell | Cell | + +## Style: leading {MD055:+2} {MD055:+3} {MD055:+4} + +| Table | Heading +| ----- | ------- +| Cell | Cell + +## Style: trailing {MD055:+2} {MD055:+3} {MD055:+4} + +Table | Heading | +----- | ------- | +Cell | Cell | diff --git a/test/table-pipe-style-implicit-trailing.md b/test/table-pipe-style-implicit-trailing.md new file mode 100644 index 00000000..bd16af60 --- /dev/null +++ b/test/table-pipe-style-implicit-trailing.md @@ -0,0 +1,25 @@ +# Table Pipe Style Implicit Trailing + +## Style: trailing + +Table | Heading | +----- | ------- | +Cell | Cell | + +## Style: both {MD055:+2} {MD055:+3} {MD055:+4} + +| Table | Heading | +| ----- | ------- | +| Cell | Cell | + +## Style: none {MD055:+2} {MD055:+3} {MD055:+4} + +Table | Heading +----- | ------- +Cell | Cell + +## Style: leading {MD055:+2} {MD055:+3} {MD055:+4} + +| Table | Heading +| ----- | ------- +| Cell | Cell diff --git a/test/table-pipe-style.md b/test/table-pipe-style.md new file mode 100644 index 00000000..aba8bcce --- /dev/null +++ b/test/table-pipe-style.md @@ -0,0 +1,150 @@ +# Table Pipe Style + + + +## Missing in Heading Row + +| Table | {MD055} +|-------|---------| + + Table | {MD055} | +|-------|---------| + + Table | {MD055} +|-------|---------| + +## Missing in Separator Row + +| Table | Heading | +|-------|--------- + +{MD055:-2} + +| Table | Heading | + -------|---------| + +{MD055:-2} + +| Table | Heading | + -------|--------- + +{MD055:-2} + +## Missing Leading and Trailing + + {MD055} | Heading +---------|--------- + {MD055} | Cell + +{MD055:-3} + + {MD055} | Heading +--------:|:-------: + {MD055} | Cell + +{MD055:-3} + +| Table | Heading | +|--------:|:--------| + {MD055} | Cell + +| Table | Heading | +|---------|---------| + {MD055} | Cell +| Cell | Cell | +| Cell | Cell | + +| Table | Heading | +|---------|---------| +| Cell | Cell | + {MD055} | Cell +| Cell | Cell | + +| Table | Heading | +|---------|---------| +| Cell | Cell | +| Cell | Cell | + {MD055} | Cell + +## Missing Trailing + +| Table | Heading | +|--------:|:--------| +| {MD055} | Cell + +| Table | Heading | +|---------|---------| +| {MD055} | Cell +| Cell | Cell | +| Cell | Cell | + +| Table | Heading | +|---------|---------| +| Cell | Cell | +| {MD055} | Cell +| Cell | Cell | + +| Table | Heading | +|---------|---------| +| Cell | Cell | +| Cell | Cell | +| {MD055} | Cell + +## Missing Leading + +| Table | Heading | +|--------:|:--------| + {MD055} | Cell | + +| Table | Heading | +|---------|---------| + {MD055} | Cell | +| Cell | Cell | +| Cell | Cell | + +| Table | Heading | +|---------|---------| +| Cell | Cell | + {MD055} | Cell | +| Cell | Cell | + +| Table | Heading | +|---------|---------| +| Cell | Cell | +| Cell | Cell | + {MD055} | Cell | + +## Followed by Text + +| Table | Heading | +|-------|---------| +| Cell | Cell | +{MD055} Text + +## Table inside Blockquote + +> | Table | {MD055} +> |---------|---------| +> {MD055} | {MD027} | + +## Well-Formed + +| Table | Heading | +|-------|---------| +| Cell | Cell | + +| Table | Heading | +|-------|---------| +| Cell | Cell | +| Cell | Cell | +| Cell | Cell | + +## Leading and Trailing Spaces + + | Table | {MD009} | + |-------|---------| + | Cell | {MD009} |