mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-09-22 05:40:48 +02:00
Update MD055/table-pipe-style to support "consistent" and other styles, use micromark positioning, report ranges, add more tests.
This commit is contained in:
parent
a563c082a5
commit
7d2248d211
28 changed files with 4413 additions and 185 deletions
|
@ -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
|
- **[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
|
- **[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
|
- **[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
|
||||||
|
|
||||||
<!-- markdownlint-restore -->
|
<!-- markdownlint-restore -->
|
||||||
|
|
||||||
|
|
|
@ -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":
|
||||||
/*!***********************!*\
|
/*!***********************!*\
|
||||||
!*** ../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"),
|
var _require = __webpack_require__(/*! ./constants */ "../lib/constants.js"),
|
||||||
homepage = _require.homepage,
|
homepage = _require.homepage,
|
||||||
version = _require.version;
|
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")
|
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")
|
||||||
// md055: See https://github.com/markdownlint/markdownlint
|
|
||||||
// md056: See https://github.com/markdownlint/markdownlint
|
// md056: See https://github.com/markdownlint/markdownlint
|
||||||
// md057: See https://github.com/markdownlint/markdownlint
|
// md057: See https://github.com/markdownlint/markdownlint
|
||||||
]);
|
]);
|
||||||
|
|
|
@ -1,34 +1,42 @@
|
||||||
This rule is triggered when a [GFM table][gfm-table] is missing a leading
|
This rule is triggered when a [GitHub Flavored Markdown table][gfm-table] is
|
||||||
or trailing pipe character `|`.
|
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
|
```markdown
|
||||||
| Heading | Heading |
|
| Heading | Heading |
|
||||||
|---------|---------
|
| ------- | -------
|
||||||
Cell | Cell |
|
Cell | Cell |
|
||||||
```
|
```
|
||||||
|
|
||||||
To fix this, make sure there is a pipe character at the start and end of the
|
To fix these issues, make sure there is a pipe character at the beginning and
|
||||||
row:
|
end of every row:
|
||||||
|
|
||||||
```markdown
|
```markdown
|
||||||
| Heading | Heading |
|
| Heading | Heading |
|
||||||
|---------|---------|
|
| ------- | ------- |
|
||||||
| Cell | Cell |
|
| Cell | Cell |
|
||||||
```
|
```
|
||||||
|
|
||||||
Note that text immediately below a table is treated as part of the table and
|
Note that text immediately following a table (i.e., not separated by an empty
|
||||||
will trigger this rule:
|
line) is treated as part of the table (per the specification) and may also
|
||||||
|
trigger this rule:
|
||||||
|
|
||||||
```markdown
|
```markdown
|
||||||
| Heading | Heading |
|
| Heading | Heading |
|
||||||
|---------|---------|
|
| ------- | ------- |
|
||||||
| Cell | Cell |
|
| 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
|
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-
|
[gfm-table]: https://github.github.com/gfm/#tables-extension-
|
||||||
|
|
57
doc/Rules.md
57
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
|
Markdown form. Reference links and images can be easier to read and manipulate
|
||||||
in Markdown form, but require a separate link reference definition.
|
in Markdown form, but require a separate link reference definition.
|
||||||
|
|
||||||
|
<a name="md055"></a>
|
||||||
|
|
||||||
|
## `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-
|
||||||
|
|
||||||
<!-- markdownlint-configure-file {
|
<!-- markdownlint-configure-file {
|
||||||
"no-inline-html": {
|
"no-inline-html": {
|
||||||
"allowed_elements": [
|
"allowed_elements": [
|
||||||
|
|
54
doc/md055.md
Normal file
54
doc/md055.md
Normal file
|
@ -0,0 +1,54 @@
|
||||||
|
# `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-
|
26
lib/configuration.d.ts
vendored
26
lib/configuration.d.ts
vendored
|
@ -1048,6 +1048,28 @@ export interface Configuration {
|
||||||
*/
|
*/
|
||||||
url_inline?: boolean;
|
url_inline?: boolean;
|
||||||
};
|
};
|
||||||
|
/**
|
||||||
|
* MD055/table-pipe-style : Table pipe style : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md055.md
|
||||||
|
*/
|
||||||
|
MD055?:
|
||||||
|
| boolean
|
||||||
|
| {
|
||||||
|
/**
|
||||||
|
* Table pipe style
|
||||||
|
*/
|
||||||
|
style?: "consistent" | "leading_only" | "trailing_only" | "leading_and_trailing" | "no_leading_or_trailing";
|
||||||
|
};
|
||||||
|
/**
|
||||||
|
* MD055/table-pipe-style : Table pipe style : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md055.md
|
||||||
|
*/
|
||||||
|
"table-pipe-style"?:
|
||||||
|
| boolean
|
||||||
|
| {
|
||||||
|
/**
|
||||||
|
* Table pipe style
|
||||||
|
*/
|
||||||
|
style?: "consistent" | "leading_only" | "trailing_only" | "leading_and_trailing" | "no_leading_or_trailing";
|
||||||
|
};
|
||||||
/**
|
/**
|
||||||
* headings : MD001, MD003, MD018, MD019, MD020, MD021, MD022, MD023, MD024, MD025, MD026, MD036, MD041, MD043
|
* headings : MD001, MD003, MD018, MD019, MD020, MD021, MD022, MD023, MD024, MD025, MD026, MD036, MD041, MD043
|
||||||
*/
|
*/
|
||||||
|
@ -1140,5 +1162,9 @@ export interface Configuration {
|
||||||
* images : MD045, MD052, MD053, MD054
|
* images : MD045, MD052, MD053, MD054
|
||||||
*/
|
*/
|
||||||
images?: boolean;
|
images?: boolean;
|
||||||
|
/**
|
||||||
|
* table : MD055
|
||||||
|
*/
|
||||||
|
table?: boolean;
|
||||||
[k: string]: unknown;
|
[k: string]: unknown;
|
||||||
}
|
}
|
||||||
|
|
63
lib/md055.js
63
lib/md055.js
|
@ -2,24 +2,69 @@
|
||||||
|
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
const { addErrorContext } = require("../helpers");
|
const { addErrorDetailIf } = require("../helpers");
|
||||||
const { filterByTypes } = require("../helpers/micromark.cjs");
|
const { filterByTypes } = require("../helpers/micromark.cjs");
|
||||||
|
|
||||||
|
const whitespaceTypes = new Set([ "linePrefix", "whitespace" ]);
|
||||||
|
const ignoreWhitespace = (tokens) => tokens.filter(
|
||||||
|
(token) => !whitespaceTypes.has(token.type)
|
||||||
|
);
|
||||||
|
const firstOrNothing = (items) => items[0];
|
||||||
|
const lastOrNothing = (items) => items[items.length - 1];
|
||||||
|
const makeRange = (start, end) => [ start, end - start + 1 ];
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
"names": [ "MD055", "table-missing-border" ],
|
"names": [ "MD055", "table-pipe-style" ],
|
||||||
"description": "Table is missing leading or trailing pipe character",
|
"description": "Table pipe style",
|
||||||
"tags": [ "table" ],
|
"tags": [ "table" ],
|
||||||
"function": function MD055(params, onError) {
|
"function": function MD055(params, onError) {
|
||||||
|
const style = String(params.config.style || "consistent");
|
||||||
|
let expectedStyle = style;
|
||||||
|
let expectedLeadingPipe =
|
||||||
|
((expectedStyle !== "no_leading_or_trailing") && (expectedStyle !== "trailing_only"));
|
||||||
|
let expectedTrailingPipe =
|
||||||
|
((expectedStyle !== "no_leading_or_trailing") && (expectedStyle !== "leading_only"));
|
||||||
const tables = filterByTypes(params.parsers.micromark.tokens, [ "table" ]);
|
const tables = filterByTypes(params.parsers.micromark.tokens, [ "table" ]);
|
||||||
for (const table of tables) {
|
for (const table of tables) {
|
||||||
const rows = filterByTypes(table.children, [ "tableRow", "tableDelimiterRow" ]);
|
const rows = filterByTypes(table.children, [ "tableDelimiterRow", "tableRow" ]);
|
||||||
for (const row of rows) {
|
for (const row of rows) {
|
||||||
const { startLine, text } = row;
|
// The following uses of first/lastOrNothing lack fallback handling
|
||||||
if (!text.startsWith("|")) {
|
// because it seems not to be possible (i.e., 0% coverage)
|
||||||
addErrorContext(onError, startLine, text, true);
|
const firstCell = firstOrNothing(row.children);
|
||||||
|
const leadingToken = firstOrNothing(ignoreWhitespace(firstCell.children));
|
||||||
|
const actualLeadingPipe = (leadingToken.type === "tableCellDivider");
|
||||||
|
const lastCell = lastOrNothing(row.children);
|
||||||
|
const trailingToken = lastOrNothing(ignoreWhitespace(lastCell.children));
|
||||||
|
const actualTrailingPipe = (trailingToken.type === "tableCellDivider");
|
||||||
|
const 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 (!text.endsWith("|")) {
|
if (actualLeadingPipe !== expectedLeadingPipe) {
|
||||||
addErrorContext(onError, startLine, text, false, true);
|
addErrorDetailIf(
|
||||||
|
onError,
|
||||||
|
firstCell.startLine,
|
||||||
|
expectedStyle,
|
||||||
|
actualStyle,
|
||||||
|
`${expectedLeadingPipe ? "Missing" : "Unexpected"} leading pipe`,
|
||||||
|
undefined,
|
||||||
|
makeRange(row.startColumn, firstCell.startColumn)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
if (actualTrailingPipe !== expectedTrailingPipe) {
|
||||||
|
addErrorDetailIf(
|
||||||
|
onError,
|
||||||
|
lastCell.endLine,
|
||||||
|
expectedStyle,
|
||||||
|
actualStyle,
|
||||||
|
`${expectedTrailingPipe ? "Missing" : "Unexpected"} trailing pipe`,
|
||||||
|
undefined,
|
||||||
|
makeRange(lastCell.endColumn - 1, row.endColumn - 1)
|
||||||
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -291,5 +291,11 @@
|
||||||
"shortcut": true,
|
"shortcut": true,
|
||||||
// Allow URLs as inline links
|
// Allow URLs as inline links
|
||||||
"url_inline": true
|
"url_inline": true
|
||||||
|
},
|
||||||
|
|
||||||
|
// MD055/table-pipe-style : Table pipe style : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md055.md
|
||||||
|
"MD055": {
|
||||||
|
// Table pipe style
|
||||||
|
"style": "consistent"
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -262,3 +262,8 @@ MD054:
|
||||||
shortcut: true
|
shortcut: true
|
||||||
# Allow URLs as inline links
|
# Allow URLs as inline links
|
||||||
url_inline: true
|
url_inline: true
|
||||||
|
|
||||||
|
# MD055/table-pipe-style : Table pipe style : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md055.md
|
||||||
|
MD055:
|
||||||
|
# Table pipe style
|
||||||
|
style: "consistent"
|
||||||
|
|
|
@ -529,6 +529,22 @@ for (const rule of rules) {
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
break;
|
break;
|
||||||
|
case "MD055":
|
||||||
|
scheme.properties = {
|
||||||
|
"style": {
|
||||||
|
"description": "Table pipe style",
|
||||||
|
"type": "string",
|
||||||
|
"enum": [
|
||||||
|
"consistent",
|
||||||
|
"leading_only",
|
||||||
|
"trailing_only",
|
||||||
|
"leading_and_trailing",
|
||||||
|
"no_leading_or_trailing"
|
||||||
|
],
|
||||||
|
"default": "consistent"
|
||||||
|
}
|
||||||
|
};
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
custom = false;
|
custom = false;
|
||||||
break;
|
break;
|
||||||
|
|
|
@ -1628,6 +1628,52 @@
|
||||||
},
|
},
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
|
"MD055": {
|
||||||
|
"description": "MD055/table-pipe-style : Table pipe style : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md055.md",
|
||||||
|
"type": [
|
||||||
|
"boolean",
|
||||||
|
"object"
|
||||||
|
],
|
||||||
|
"default": true,
|
||||||
|
"properties": {
|
||||||
|
"style": {
|
||||||
|
"description": "Table pipe style",
|
||||||
|
"type": "string",
|
||||||
|
"enum": [
|
||||||
|
"consistent",
|
||||||
|
"leading_only",
|
||||||
|
"trailing_only",
|
||||||
|
"leading_and_trailing",
|
||||||
|
"no_leading_or_trailing"
|
||||||
|
],
|
||||||
|
"default": "consistent"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"additionalProperties": false
|
||||||
|
},
|
||||||
|
"table-pipe-style": {
|
||||||
|
"description": "MD055/table-pipe-style : Table pipe style : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md055.md",
|
||||||
|
"type": [
|
||||||
|
"boolean",
|
||||||
|
"object"
|
||||||
|
],
|
||||||
|
"default": true,
|
||||||
|
"properties": {
|
||||||
|
"style": {
|
||||||
|
"description": "Table pipe style",
|
||||||
|
"type": "string",
|
||||||
|
"enum": [
|
||||||
|
"consistent",
|
||||||
|
"leading_only",
|
||||||
|
"trailing_only",
|
||||||
|
"leading_and_trailing",
|
||||||
|
"no_leading_or_trailing"
|
||||||
|
],
|
||||||
|
"default": "consistent"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"additionalProperties": false
|
||||||
|
},
|
||||||
"headings": {
|
"headings": {
|
||||||
"description": "headings : MD001, MD003, MD018, MD019, MD020, MD021, MD022, MD023, MD024, MD025, MD026, MD036, MD041, MD043",
|
"description": "headings : MD001, MD003, MD018, MD019, MD020, MD021, MD022, MD023, MD024, MD025, MD026, MD036, MD041, MD043",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
|
@ -1742,6 +1788,11 @@
|
||||||
"description": "images : MD045, MD052, MD053, MD054",
|
"description": "images : MD045, MD052, MD053, MD054",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
|
},
|
||||||
|
"table": {
|
||||||
|
"description": "table : MD055",
|
||||||
|
"type": "boolean",
|
||||||
|
"default": true
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"additionalProperties": {
|
"additionalProperties": {
|
||||||
|
|
|
@ -53,5 +53,5 @@
|
||||||
| cell | cell |
|
| cell | cell |
|
||||||
|
|
||||||
<!-- markdownlint-configure-file {
|
<!-- markdownlint-configure-file {
|
||||||
"table-missing-border": false
|
"table-pipe-style": false
|
||||||
} -->
|
} -->
|
||||||
|
|
|
@ -918,7 +918,7 @@ test("readme", async(t) => {
|
||||||
});
|
});
|
||||||
|
|
||||||
test("validateJsonUsingConfigSchemaStrict", async(t) => {
|
test("validateJsonUsingConfigSchemaStrict", async(t) => {
|
||||||
t.plan(173);
|
t.plan(178);
|
||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
const ajv = new Ajv(ajvOptions);
|
const ajv = new Ajv(ajvOptions);
|
||||||
const validateSchemaStrict = ajv.compile(configSchemaStrict);
|
const validateSchemaStrict = ajv.compile(configSchemaStrict);
|
||||||
|
|
|
@ -11,5 +11,5 @@ text | text
|
||||||
{MD033} | <b>text</b>
|
{MD033} | <b>text</b>
|
||||||
|
|
||||||
<!-- markdownlint-configure-file {
|
<!-- markdownlint-configure-file {
|
||||||
"table-missing-border": false
|
"table-pipe-style": false
|
||||||
} -->
|
} -->
|
||||||
|
|
|
@ -14,13 +14,454 @@ Generated by [AVA](https://avajs.dev).
|
||||||
|
|
||||||
> Expected linting violations
|
> 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
|
## https://github.com/electron/electron
|
||||||
|
|
||||||
> Expected linting violations
|
> 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: 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]"]`
|
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
|
> 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
|
## https://github.com/mdn/content
|
||||||
|
|
||||||
|
@ -40,7 +494,126 @@ Generated by [AVA](https://avajs.dev).
|
||||||
|
|
||||||
> Expected linting violations
|
> 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
|
## https://github.com/mochajs/mocha
|
||||||
|
|
||||||
|
@ -81,19 +654,336 @@ Generated by [AVA](https://avajs.dev).
|
||||||
|
|
||||||
> Expected linting violations
|
> 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
|
## https://github.com/v8/v8.dev
|
||||||
|
|
||||||
> Expected linting violations
|
> 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: 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: 78: MD034/no-bare-urls Bare URL used [Context: "v8-dev@googlegroups.com"]␊
|
||||||
test-repos/v8-v8-dev/src/docs/design-review-guidelines.md: 80: MD034/no-bare-urls Bare URL used [Context: "v8-eng-review-owners@googlegro..."]␊
|
test-repos/v8-v8-dev/src/docs/design-review-guidelines.md: 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: "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/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/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: 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: 19: MD033/no-inline-html Inline HTML [Element: feature-support]␊
|
||||||
test-repos/v8-v8-dev/src/feature-support.md: 27: MD033/no-inline-html Inline HTML [Element: feature-support]␊
|
test-repos/v8-v8-dev/src/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/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-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: 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: 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: 58: MD033/no-inline-html Inline HTML [Element: feature-support]␊
|
||||||
test-repos/v8-v8-dev/src/features/intl-numberformat.md: 104: MD033/no-inline-html Inline HTML [Element: feature-support]␊
|
test-repos/v8-v8-dev/src/features/intl-numberformat.md: 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: 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: 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: 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/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-match-indices.md: 134: MD033/no-inline-html Inline HTML [Element: feature-support]␊
|
||||||
test-repos/v8-v8-dev/src/features/regexp-v-flag.md: 254: MD033/no-inline-html Inline HTML [Element: feature-support]␊
|
test-repos/v8-v8-dev/src/features/regexp-v-flag.md: 254: MD033/no-inline-html Inline HTML [Element: feature-support]␊
|
||||||
|
|
Binary file not shown.
File diff suppressed because it is too large
Load diff
Binary file not shown.
|
@ -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 |
|
|
31
test/table-pipe-style-explicit-both.md
Normal file
31
test/table-pipe-style-explicit-both.md
Normal file
|
@ -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 |
|
||||||
|
|
||||||
|
<!-- markdownlint-configure-file {
|
||||||
|
"table-pipe-style": {
|
||||||
|
"style": "leading_and_trailing"
|
||||||
|
}
|
||||||
|
} -->
|
31
test/table-pipe-style-explicit-leading.md
Normal file
31
test/table-pipe-style-explicit-leading.md
Normal file
|
@ -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 |
|
||||||
|
|
||||||
|
<!-- markdownlint-configure-file {
|
||||||
|
"table-pipe-style": {
|
||||||
|
"style": "leading_only"
|
||||||
|
}
|
||||||
|
} -->
|
31
test/table-pipe-style-explicit-none.md
Normal file
31
test/table-pipe-style-explicit-none.md
Normal file
|
@ -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 |
|
||||||
|
|
||||||
|
<!-- markdownlint-configure-file {
|
||||||
|
"table-pipe-style": {
|
||||||
|
"style": "no_leading_or_trailing"
|
||||||
|
}
|
||||||
|
} -->
|
31
test/table-pipe-style-explicit-trailing.md
Normal file
31
test/table-pipe-style-explicit-trailing.md
Normal file
|
@ -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 |
|
||||||
|
|
||||||
|
<!-- markdownlint-configure-file {
|
||||||
|
"table-pipe-style": {
|
||||||
|
"style": "trailing_only"
|
||||||
|
}
|
||||||
|
} -->
|
25
test/table-pipe-style-implicit-both.md
Normal file
25
test/table-pipe-style-implicit-both.md
Normal file
|
@ -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 |
|
25
test/table-pipe-style-implicit-leading.md
Normal file
25
test/table-pipe-style-implicit-leading.md
Normal file
|
@ -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 |
|
25
test/table-pipe-style-implicit-none.md
Normal file
25
test/table-pipe-style-implicit-none.md
Normal file
|
@ -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 |
|
25
test/table-pipe-style-implicit-trailing.md
Normal file
25
test/table-pipe-style-implicit-trailing.md
Normal file
|
@ -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
|
150
test/table-pipe-style.md
Normal file
150
test/table-pipe-style.md
Normal file
|
@ -0,0 +1,150 @@
|
||||||
|
# Table Pipe Style
|
||||||
|
|
||||||
|
<!-- markdownlint-configure-file {
|
||||||
|
"table-pipe-style": {
|
||||||
|
"style": "leading_and_trailing"
|
||||||
|
}
|
||||||
|
} -->
|
||||||
|
|
||||||
|
## 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} |
|
Loading…
Add table
Add a link
Reference in a new issue