Refactor tests to split large repo tests into separate files so ava will run them in parallel (reduces test time by ~50%).

This commit is contained in:
David Anson 2023-12-30 19:14:31 -08:00
parent 7d2248d211
commit d0a491d74b
12 changed files with 597 additions and 623 deletions

View file

@ -0,0 +1,14 @@
// @ts-check
"use strict";
const { join } = require("node:path").posix;
const test = require("ava").default;
const { lintTestRepo } = require("./markdownlint-test-repos");
test("https://github.com/dotnet/docs", (t) => {
const rootDir = "./test-repos/dotnet-docs";
const globPatterns = [ join(rootDir, "**/*.md") ];
const configPath = join(rootDir, ".markdownlint-cli2.jsonc");
return lintTestRepo(t, globPatterns, configPath);
});

View file

@ -0,0 +1,14 @@
// @ts-check
"use strict";
const { join } = require("node:path").posix;
const test = require("ava").default;
const { lintTestRepo } = require("./markdownlint-test-repos");
test("https://github.com/mdn/content", (t) => {
const rootDir = "./test-repos/mdn-content";
const globPatterns = [ join(rootDir, "**/*.md") ];
const configPath = join(rootDir, ".markdownlint-cli2.jsonc");
return lintTestRepo(t, globPatterns, configPath);
});

View file

@ -0,0 +1,97 @@
// @ts-check
"use strict";
const { join } = require("node:path").posix;
const test = require("ava").default;
const { excludeGlobs, lintTestRepo } = require("./markdownlint-test-repos");
// Run markdownlint the same way the corresponding repositories do
test("https://github.com/apache/airflow", (t) => {
const rootDir = "./test-repos/apache-airflow";
const globPatterns = [ join(rootDir, "**/*.{md,mdown,markdown}") ];
const configPath = join(rootDir, ".markdownlint.yml");
return lintTestRepo(t, globPatterns, configPath);
});
test("https://github.com/electron/electron", (t) => {
const rootDir = "./test-repos/electron-electron";
const globPatterns = [
join(rootDir, "*.md"),
join(rootDir, "docs/**/*.md")
];
const configPath = join(rootDir, ".markdownlint.json");
return lintTestRepo(t, globPatterns, configPath);
});
test("https://github.com/eslint/eslint", (t) => {
const rootDir = "./test-repos/eslint-eslint";
const globPatterns = [ join(rootDir, "docs/**/*.md") ];
const configPath = join(rootDir, ".markdownlint.yml");
return lintTestRepo(t, globPatterns, configPath);
});
test("https://github.com/mkdocs/mkdocs", (t) => {
const rootDir = "./test-repos/mkdocs-mkdocs";
const globPatterns = [
join(rootDir, "README.md"),
join(rootDir, "CONTRIBUTING.md"),
join(rootDir, "docs"),
...excludeGlobs(
rootDir,
"docs/CNAME",
"docs/**/*.css",
"docs/**/*.png",
"docs/**/*.py",
"docs/**/*.svg"
)
];
const configPath = join(rootDir, ".markdownlintrc");
return lintTestRepo(t, globPatterns, configPath);
});
test("https://github.com/mochajs/mocha", (t) => {
const rootDir = "./test-repos/mochajs-mocha";
const globPatterns = [
join(rootDir, "*.md"),
join(rootDir, "docs/**/*.md"),
join(rootDir, ".github/*.md"),
join(rootDir, "lib/**/*.md"),
join(rootDir, "test/**/*.md"),
join(rootDir, "example/**/*.md")
];
const configPath = join(rootDir, ".markdownlint.json");
return lintTestRepo(t, globPatterns, configPath);
});
test("https://github.com/pi-hole/docs", (t) => {
const rootDir = "./test-repos/pi-hole-docs";
const globPatterns = [ join(rootDir, "**/*.md") ];
const configPath = join(rootDir, ".markdownlint.json");
return lintTestRepo(t, globPatterns, configPath);
});
test("https://github.com/v8/v8.dev", (t) => {
const rootDir = "./test-repos/v8-v8-dev";
const globPatterns = [ join(rootDir, "src/**/*.md") ];
const configPath = join(rootDir, ".markdownlint.json");
return lintTestRepo(t, globPatterns, configPath);
});
test("https://github.com/webhintio/hint", (t) => {
const rootDir = "./test-repos/webhintio-hint";
const globPatterns = [
join(rootDir, "**/*.md"),
...excludeGlobs(rootDir, "**/CHANGELOG.md")
];
const configPath = join(rootDir, ".markdownlintrc");
return lintTestRepo(t, globPatterns, configPath);
});
test("https://github.com/webpack/webpack.js.org", (t) => {
const rootDir = "./test-repos/webpack-webpack-js-org";
const globPatterns = [ join(rootDir, "**/*.md") ];
const configPath = join(rootDir, ".markdownlint.json");
return lintTestRepo(t, globPatterns, configPath);
});

View file

@ -3,12 +3,8 @@
"use strict";
const { join } = require("node:path").posix;
const { promisify } = require("node:util");
const jsYaml = require("js-yaml");
const test = require("ava").default;
const markdownlint = require("../lib/markdownlint");
const markdownlintPromise = promisify(markdownlint);
const readConfigPromise = promisify(markdownlint.readConfig);
/**
* Lints a test repository.
@ -29,14 +25,12 @@ async function lintTestRepo(t, globPatterns, configPath) {
const yamlParse = (yaml) => jsYaml.load(yaml);
return Promise.all([
globby(globPatterns),
// @ts-ignore
readConfigPromise(configPath, [ jsoncParse, yamlParse ])
markdownlint.promises.readConfig(configPath, [ jsoncParse, yamlParse ])
]).then((globbyAndReadConfigResults) => {
const [ files, rawConfig ] = globbyAndReadConfigResults;
// eslint-disable-next-line no-console
console.log(`${t.title}: Linting ${files.length} files...`);
const config = Object.fromEntries(
// @ts-ignore
Object.entries(rawConfig).
map(([ k, v ]) => [
k.replace(/header/, "heading"),
@ -49,66 +43,10 @@ async function lintTestRepo(t, globPatterns, configPath) {
v
])
);
return markdownlintPromise({
return markdownlint.promises.markdownlint({
files,
config
// }).then((results) => {
// // Cross-check MD051/link-fragments results with markdown-link-check
// const resultFiles = [];
// const detectedErrors = new Set();
// for (const file of Object.keys(results)) {
// const errors =
// results[file].filter((error) => error.ruleNames[0] === "MD051");
// if (errors.length > 0) {
// resultFiles.push(file);
// }
// for (const error of errors) {
// const fragment = error.errorContext.replace(/^.*\((#.*)\)$/, "$1");
// detectedErrors.add(file + fragment);
// }
// }
// const { readFile } = require("fs").promises;
// const markdownLinkCheck = promisify(require("markdown-link-check"));
// const expectedErrors = new Set();
// return Promise.all(
// resultFiles.map((file) => readFile(file, "utf8")
// // @ts-ignore
// .then((markdown) => markdownLinkCheck(markdown, {
// "ignorePatterns": [
// {
// "pattern": "^[^#]"
// }
// ]
// }))
// .then((mlcResults) => {
// const deadResults =
// mlcResults.filter((result) => result.status === "dead");
// for (const link of deadResults.map((result) => result.link)) {
// expectedErrors.add(file + link);
// }
// })
// )
// ).then(() => {
// const extraErrors = [];
// // @ts-ignore
// for (const detectedError of detectedErrors) {
// if (!expectedErrors.has(detectedError)) {
// extraErrors.push(detectedError);
// }
// }
// t.deepEqual(extraErrors, [], "Extra errors");
// const missingErrors = [];
// // @ts-ignore
// for (const expectedError of expectedErrors) {
// if (!detectedErrors.has(expectedError)) {
// missingErrors.push(expectedError);
// }
// }
// t.deepEqual(missingErrors, [], "Missing errors");
// return results;
// });
}).then((results) => {
// @ts-ignore
const resultsString = results.toString();
t.snapshot(
resultsString,
@ -129,106 +67,7 @@ function excludeGlobs(rootDir, ...globs) {
return globs.map((glob) => "!" + join(rootDir, glob));
}
// Run markdownlint the same way the corresponding repositories do
test("https://github.com/apache/airflow", (t) => {
const rootDir = "./test-repos/apache-airflow";
const globPatterns = [ join(rootDir, "**/*.{md,mdown,markdown}") ];
const configPath = join(rootDir, ".markdownlint.yml");
return lintTestRepo(t, globPatterns, configPath);
});
test("https://github.com/dotnet/docs", (t) => {
const rootDir = "./test-repos/dotnet-docs";
const globPatterns = [ join(rootDir, "**/*.md") ];
const configPath = join(rootDir, ".markdownlint-cli2.jsonc");
return lintTestRepo(t, globPatterns, configPath);
});
test("https://github.com/electron/electron", (t) => {
const rootDir = "./test-repos/electron-electron";
const globPatterns = [
join(rootDir, "*.md"),
join(rootDir, "docs/**/*.md")
];
const configPath = join(rootDir, ".markdownlint.json");
return lintTestRepo(t, globPatterns, configPath);
});
test("https://github.com/eslint/eslint", (t) => {
const rootDir = "./test-repos/eslint-eslint";
const globPatterns = [ join(rootDir, "docs/**/*.md") ];
const configPath = join(rootDir, ".markdownlint.yml");
return lintTestRepo(t, globPatterns, configPath);
});
test("https://github.com/mdn/content", (t) => {
const rootDir = "./test-repos/mdn-content";
const globPatterns = [ join(rootDir, "**/*.md") ];
const configPath = join(rootDir, ".markdownlint-cli2.jsonc");
return lintTestRepo(t, globPatterns, configPath);
});
test("https://github.com/mkdocs/mkdocs", (t) => {
const rootDir = "./test-repos/mkdocs-mkdocs";
const globPatterns = [
join(rootDir, "README.md"),
join(rootDir, "CONTRIBUTING.md"),
join(rootDir, "docs"),
...excludeGlobs(
rootDir,
"docs/CNAME",
"docs/**/*.css",
"docs/**/*.png",
"docs/**/*.py",
"docs/**/*.svg"
)
];
const configPath = join(rootDir, ".markdownlintrc");
return lintTestRepo(t, globPatterns, configPath);
});
test("https://github.com/mochajs/mocha", (t) => {
const rootDir = "./test-repos/mochajs-mocha";
const globPatterns = [
join(rootDir, "*.md"),
join(rootDir, "docs/**/*.md"),
join(rootDir, ".github/*.md"),
join(rootDir, "lib/**/*.md"),
join(rootDir, "test/**/*.md"),
join(rootDir, "example/**/*.md")
];
const configPath = join(rootDir, ".markdownlint.json");
return lintTestRepo(t, globPatterns, configPath);
});
test("https://github.com/pi-hole/docs", (t) => {
const rootDir = "./test-repos/pi-hole-docs";
const globPatterns = [ join(rootDir, "**/*.md") ];
const configPath = join(rootDir, ".markdownlint.json");
return lintTestRepo(t, globPatterns, configPath);
});
test("https://github.com/v8/v8.dev", (t) => {
const rootDir = "./test-repos/v8-v8-dev";
const globPatterns = [ join(rootDir, "src/**/*.md") ];
const configPath = join(rootDir, ".markdownlint.json");
return lintTestRepo(t, globPatterns, configPath);
});
test("https://github.com/webhintio/hint", (t) => {
const rootDir = "./test-repos/webhintio-hint";
const globPatterns = [
join(rootDir, "**/*.md"),
...excludeGlobs(rootDir, "**/CHANGELOG.md")
];
const configPath = join(rootDir, ".markdownlintrc");
return lintTestRepo(t, globPatterns, configPath);
});
test("https://github.com/webpack/webpack.js.org", (t) => {
const rootDir = "./test-repos/webpack-webpack-js-org";
const globPatterns = [ join(rootDir, "**/*.md") ];
const configPath = join(rootDir, ".markdownlint.json");
return lintTestRepo(t, globPatterns, configPath);
});
module.exports = {
excludeGlobs,
lintTestRepo
};

View file

@ -0,0 +1,451 @@
# Snapshot report for `test/markdownlint-test-repos-dotnet-docs.js`
The actual snapshot is saved in `markdownlint-test-repos-dotnet-docs.js.snap`.
Generated by [AVA](https://avajs.dev).
## https://github.com/dotnet/docs
> 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]`

View file

@ -0,0 +1,11 @@
# Snapshot report for `test/markdownlint-test-repos-mdn-content.js`
The actual snapshot is saved in `markdownlint-test-repos-mdn-content.js.snap`.
Generated by [AVA](https://avajs.dev).
## https://github.com/mdn/content
> Expected linting violations
''

View file

@ -1,6 +1,6 @@
# Snapshot report for `test/markdownlint-test-repos.js`
# Snapshot report for `test/markdownlint-test-repos-small.js`
The actual snapshot is saved in `markdownlint-test-repos.js.snap`.
The actual snapshot is saved in `markdownlint-test-repos-small.js.snap`.
Generated by [AVA](https://avajs.dev).
@ -10,452 +10,6 @@ Generated by [AVA](https://avajs.dev).
''
## https://github.com/dotnet/docs
> Expected linting violations
`test-repos/dotnet-docs/docs/core/compatibility/6.0.md: 74: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/compatibility/6.0.md: 77: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/compatibility/globalization/5.0/listseparator-value-change.md: 19: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
test-repos/dotnet-docs/docs/core/compatibility/globalization/5.0/listseparator-value-change.md: 19: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/dependency-loading/loading-managed.md: 23: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: trailing_only; Missing leading pipe]␊
test-repos/dotnet-docs/docs/core/dependency-loading/loading-managed.md: 25: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: trailing_only; Missing leading pipe]␊
test-repos/dotnet-docs/docs/core/dependency-loading/loading-managed.md: 28: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: trailing_only; Missing leading pipe]␊
test-repos/dotnet-docs/docs/core/dependency-loading/loading-managed.md: 29: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: trailing_only; Missing leading pipe]␊
test-repos/dotnet-docs/docs/core/dependency-loading/loading-managed.md: 30: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: trailing_only; Missing leading pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/collect-dumps-crash.md: 19: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 151: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 152: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 153: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 154: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 155: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 156: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 157: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 158: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 159: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 160: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 161: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 162: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 163: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 164: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 165: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 166: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 167: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 168: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 169: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 170: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 171: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 172: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 173: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 174: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 175: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 176: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 177: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 178: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 179: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 180: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 181: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 182: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 183: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 184: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 185: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 186: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 187: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 188: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 189: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 190: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 191: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 192: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 193: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 194: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 195: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 196: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 197: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 198: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 199: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 200: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 201: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 202: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 203: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 204: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 205: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 206: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 207: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 208: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 209: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 210: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 211: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 212: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 213: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 214: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 215: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 216: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 217: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 218: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 219: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 220: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 221: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 222: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 223: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 224: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 225: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 226: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 227: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/dotnet-dump.md: 228: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 51: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 116: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 117: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 118: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 119: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 120: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 121: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 122: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 123: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 124: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 125: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 126: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 127: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 128: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 129: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 130: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 131: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 132: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 133: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 134: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 135: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 136: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 137: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 138: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 139: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 140: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 141: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 142: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 143: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 144: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 145: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 146: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 147: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 148: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 149: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 150: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 151: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 152: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 153: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 154: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 155: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 156: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 157: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 158: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 159: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 160: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 161: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 162: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 163: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 164: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 165: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 166: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 167: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 168: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 169: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 170: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 171: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 172: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 173: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 174: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 175: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 176: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 177: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 178: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 179: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 180: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 181: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 182: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 183: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 184: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 185: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 186: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 187: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 188: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 189: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 190: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 191: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 192: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 193: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 194: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 195: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 199: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 200: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 201: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 202: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 203: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 204: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 205: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 205: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 206: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 207: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 208: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 209: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 210: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 211: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 212: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 213: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 214: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 218: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 219: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 220: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 221: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 222: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 223: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 224: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 225: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 226: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 227: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 228: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 229: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 230: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 231: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 232: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/diagnostics/sos-debugging-extension.md: 233: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/runtime-config/wpf.md: 18: MD055/table-pipe-style Table pipe style [Expected: leading_only; Actual: leading_and_trailing; Unexpected trailing pipe]␊
test-repos/dotnet-docs/docs/core/runtime-config/wpf.md: 19: MD055/table-pipe-style Table pipe style [Expected: leading_only; Actual: leading_and_trailing; Unexpected trailing pipe]␊
test-repos/dotnet-docs/docs/core/runtime-config/wpf.md: 20: MD055/table-pipe-style Table pipe style [Expected: leading_only; Actual: leading_and_trailing; Unexpected trailing pipe]␊
test-repos/dotnet-docs/docs/core/runtime-discovery/troubleshoot-app-launch.md: 144: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
test-repos/dotnet-docs/docs/core/runtime-discovery/troubleshoot-app-launch.md: 144: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/runtime-discovery/troubleshoot-app-launch.md: 151: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
test-repos/dotnet-docs/docs/core/runtime-discovery/troubleshoot-app-launch.md: 151: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/tools/dotnet.md: 183: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
test-repos/dotnet-docs/docs/core/tools/dotnet.md: 183: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/tools/dotnet.md: 184: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
test-repos/dotnet-docs/docs/core/tools/dotnet.md: 184: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/tools/dotnet.md: 185: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
test-repos/dotnet-docs/docs/core/tools/dotnet.md: 185: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/tools/dotnet.md: 186: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
test-repos/dotnet-docs/docs/core/tools/dotnet.md: 186: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/tools/dotnet.md: 187: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
test-repos/dotnet-docs/docs/core/tools/dotnet.md: 187: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/tools/dotnet.md: 191: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
test-repos/dotnet-docs/docs/core/tools/dotnet.md: 191: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/tools/dotnet.md: 192: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
test-repos/dotnet-docs/docs/core/tools/dotnet.md: 192: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/tools/dotnet.md: 193: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
test-repos/dotnet-docs/docs/core/tools/dotnet.md: 193: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/tools/dotnet.md: 194: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
test-repos/dotnet-docs/docs/core/tools/dotnet.md: 194: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/tools/dotnet.md: 198: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
test-repos/dotnet-docs/docs/core/tools/dotnet.md: 198: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/tools/dotnet.md: 199: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
test-repos/dotnet-docs/docs/core/tools/dotnet.md: 199: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/tools/dotnet.md: 200: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
test-repos/dotnet-docs/docs/core/tools/dotnet.md: 200: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/tools/dotnet.md: 201: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
test-repos/dotnet-docs/docs/core/tools/dotnet.md: 201: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/tools/dotnet.md: 202: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
test-repos/dotnet-docs/docs/core/tools/dotnet.md: 202: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/tools/dotnet.md: 203: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
test-repos/dotnet-docs/docs/core/tools/dotnet.md: 203: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/tools/dotnet.md: 204: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
test-repos/dotnet-docs/docs/core/tools/dotnet.md: 204: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/tools/dotnet.md: 205: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
test-repos/dotnet-docs/docs/core/tools/dotnet.md: 205: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/tools/dotnet.md: 206: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
test-repos/dotnet-docs/docs/core/tools/dotnet.md: 206: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/tools/dotnet.md: 207: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
test-repos/dotnet-docs/docs/core/tools/dotnet.md: 207: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/tools/dotnet.md: 208: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
test-repos/dotnet-docs/docs/core/tools/dotnet.md: 208: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/tools/dotnet.md: 212: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
test-repos/dotnet-docs/docs/core/tools/dotnet.md: 212: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/tools/dotnet.md: 213: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
test-repos/dotnet-docs/docs/core/tools/dotnet.md: 213: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/tools/dotnet.md: 214: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
test-repos/dotnet-docs/docs/core/tools/dotnet.md: 214: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/tools/dotnet.md: 215: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
test-repos/dotnet-docs/docs/core/tools/dotnet.md: 215: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/tools/dotnet.md: 216: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
test-repos/dotnet-docs/docs/core/tools/dotnet.md: 216: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/tools/dotnet.md: 217: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
test-repos/dotnet-docs/docs/core/tools/dotnet.md: 217: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/tools/dotnet.md: 218: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
test-repos/dotnet-docs/docs/core/tools/dotnet.md: 218: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/tools/dotnet.md: 219: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
test-repos/dotnet-docs/docs/core/tools/dotnet.md: 219: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/tools/dotnet.md: 225: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
test-repos/dotnet-docs/docs/core/tools/dotnet.md: 225: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/tools/dotnet.md: 226: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
test-repos/dotnet-docs/docs/core/tools/dotnet.md: 226: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/tools/dotnet.md: 227: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
test-repos/dotnet-docs/docs/core/tools/dotnet.md: 227: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/tools/dotnet.md: 228: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
test-repos/dotnet-docs/docs/core/tools/dotnet.md: 228: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/tools/dotnet.md: 229: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
test-repos/dotnet-docs/docs/core/tools/dotnet.md: 229: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/tools/dotnet.md: 230: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
test-repos/dotnet-docs/docs/core/tools/dotnet.md: 230: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/core/tools/dotnet.md: 231: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
test-repos/dotnet-docs/docs/core/tools/dotnet.md: 231: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/csharp/linq/query-a-collection-of-objects.md: 85: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: trailing_only; Missing leading pipe]␊
test-repos/dotnet-docs/docs/csharp/linq/query-a-collection-of-objects.md: 107: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: trailing_only; Missing leading pipe]␊
test-repos/dotnet-docs/docs/csharp/programming-guide/concepts/index.md: 14: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: trailing_only; Missing leading pipe]␊
test-repos/dotnet-docs/docs/csharp/programming-guide/strings/index.md: 82: MD055/table-pipe-style Table pipe style [Expected: trailing_only; Actual: leading_and_trailing; Unexpected leading pipe]␊
test-repos/dotnet-docs/docs/csharp/programming-guide/strings/index.md: 83: MD055/table-pipe-style Table pipe style [Expected: trailing_only; Actual: leading_and_trailing; Unexpected leading pipe]␊
test-repos/dotnet-docs/docs/csharp/programming-guide/strings/index.md: 84: MD055/table-pipe-style Table pipe style [Expected: trailing_only; Actual: leading_and_trailing; Unexpected leading pipe]␊
test-repos/dotnet-docs/docs/csharp/programming-guide/strings/index.md: 85: MD055/table-pipe-style Table pipe style [Expected: trailing_only; Actual: leading_and_trailing; Unexpected leading pipe]␊
test-repos/dotnet-docs/docs/csharp/programming-guide/strings/index.md: 86: MD055/table-pipe-style Table pipe style [Expected: trailing_only; Actual: leading_and_trailing; Unexpected leading pipe]␊
test-repos/dotnet-docs/docs/csharp/programming-guide/strings/index.md: 87: MD055/table-pipe-style Table pipe style [Expected: trailing_only; Actual: leading_and_trailing; Unexpected leading pipe]␊
test-repos/dotnet-docs/docs/csharp/programming-guide/strings/index.md: 88: MD055/table-pipe-style Table pipe style [Expected: trailing_only; Actual: leading_and_trailing; Unexpected leading pipe]␊
test-repos/dotnet-docs/docs/csharp/programming-guide/strings/index.md: 89: MD055/table-pipe-style Table pipe style [Expected: trailing_only; Actual: leading_and_trailing; Unexpected leading pipe]␊
test-repos/dotnet-docs/docs/csharp/programming-guide/strings/index.md: 90: MD055/table-pipe-style Table pipe style [Expected: trailing_only; Actual: leading_and_trailing; Unexpected leading pipe]␊
test-repos/dotnet-docs/docs/csharp/programming-guide/strings/index.md: 91: MD055/table-pipe-style Table pipe style [Expected: trailing_only; Actual: leading_and_trailing; Unexpected leading pipe]␊
test-repos/dotnet-docs/docs/csharp/programming-guide/strings/index.md: 92: MD055/table-pipe-style Table pipe style [Expected: trailing_only; Actual: leading_and_trailing; Unexpected leading pipe]␊
test-repos/dotnet-docs/docs/csharp/programming-guide/strings/index.md: 93: MD055/table-pipe-style Table pipe style [Expected: trailing_only; Actual: leading_and_trailing; Unexpected leading pipe]␊
test-repos/dotnet-docs/docs/csharp/programming-guide/strings/index.md: 94: MD055/table-pipe-style Table pipe style [Expected: trailing_only; Actual: leading_and_trailing; Unexpected leading pipe]␊
test-repos/dotnet-docs/docs/csharp/programming-guide/strings/index.md: 95: MD055/table-pipe-style Table pipe style [Expected: trailing_only; Actual: leading_and_trailing; Unexpected leading pipe]␊
test-repos/dotnet-docs/docs/csharp/programming-guide/strings/index.md: 96: MD055/table-pipe-style Table pipe style [Expected: trailing_only; Actual: leading_and_trailing; Unexpected leading pipe]␊
test-repos/dotnet-docs/docs/framework/additional-apis/pos-for-net/poscommon-class.md: 45: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/framework/additional-apis/pos-for-net/poscommon-class.md: 46: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: trailing_only; Missing leading pipe]␊
test-repos/dotnet-docs/docs/framework/additional-apis/pos-for-net/poscommon-class.md: 49: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/framework/additional-apis/pos-for-net/poscommon-class.md: 50: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: trailing_only; Missing leading pipe]␊
test-repos/dotnet-docs/docs/framework/additional-apis/pos-for-net/poscommon-class.md: 53: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/framework/additional-apis/pos-for-net/poscommon-class.md: 54: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: trailing_only; Missing leading pipe]␊
test-repos/dotnet-docs/docs/framework/additional-apis/pos-for-net/poscommon-class.md: 58: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/framework/additional-apis/pos-for-net/poscommon-class.md: 59: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: trailing_only; Missing leading pipe]␊
test-repos/dotnet-docs/docs/framework/additional-apis/pos-for-net/poscommon-class.md: 64: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/framework/additional-apis/pos-for-net/poscommon-class.md: 65: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: trailing_only; Missing leading pipe]␊
test-repos/dotnet-docs/docs/framework/configure-apps/file-schema/runtime/appcontextswitchoverrides-element.md: 84: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: trailing_only; Missing leading pipe]␊
test-repos/dotnet-docs/docs/framework/data/adonet/ef/language-reference/supported-and-unsupported-linq-methods-linq-to-entities.md: 139: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: trailing_only; Missing leading pipe]␊
test-repos/dotnet-docs/docs/framework/get-started/index.md: 77: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/framework/tools/caspol-exe-code-access-security-policy-tool.md: 55: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/framework/tools/mage-exe-manifest-generation-and-editing-tool.md: 78: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: trailing_only; Missing leading pipe]␊
test-repos/dotnet-docs/docs/framework/unmanaged-api/wmi/beginenumeration.md: 71: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: trailing_only; Missing leading pipe]␊
test-repos/dotnet-docs/docs/framework/unmanaged-api/wmi/beginenumeration.md: 78: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: trailing_only; Missing leading pipe]␊
test-repos/dotnet-docs/docs/framework/unmanaged-api/wmi/beginenumeration.md: 88: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: trailing_only; Missing leading pipe]␊
test-repos/dotnet-docs/docs/framework/unmanaged-api/wmi/beginmethodenumeration.md: 46: MD055/table-pipe-style Table pipe style [Expected: trailing_only; Actual: leading_and_trailing; Unexpected leading pipe]␊
test-repos/dotnet-docs/docs/framework/unmanaged-api/wmi/beginmethodenumeration.md: 47: MD055/table-pipe-style Table pipe style [Expected: trailing_only; Actual: leading_and_trailing; Unexpected leading pipe]␊
test-repos/dotnet-docs/docs/framework/unmanaged-api/wmi/beginmethodenumeration.md: 48: MD055/table-pipe-style Table pipe style [Expected: trailing_only; Actual: leading_and_trailing; Unexpected leading pipe]␊
test-repos/dotnet-docs/docs/framework/unmanaged-api/wmi/beginmethodenumeration.md: 54: MD055/table-pipe-style Table pipe style [Expected: trailing_only; Actual: leading_and_trailing; Unexpected leading pipe]␊
test-repos/dotnet-docs/docs/framework/unmanaged-api/wmi/beginmethodenumeration.md: 55: MD055/table-pipe-style Table pipe style [Expected: trailing_only; Actual: leading_and_trailing; Unexpected leading pipe]␊
test-repos/dotnet-docs/docs/framework/unmanaged-api/wmi/beginmethodenumeration.md: 56: MD055/table-pipe-style Table pipe style [Expected: trailing_only; Actual: leading_and_trailing; Unexpected leading pipe]␊
test-repos/dotnet-docs/docs/framework/unmanaged-api/wmi/beginmethodenumeration.md: 57: MD055/table-pipe-style Table pipe style [Expected: trailing_only; Actual: leading_and_trailing; Unexpected leading pipe]␊
test-repos/dotnet-docs/docs/framework/unmanaged-api/wmi/putmethod.md: 64: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/framework/unmanaged-api/wmi/qualifierset-beginenumeration.md: 67: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/framework/unmanaged-api/wmi/qualifierset-getnames.md: 50: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/fsharp/language-reference/caller-information.md: 14: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/fsharp/language-reference/keyword-reference.md: 200: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
test-repos/dotnet-docs/docs/fsharp/language-reference/keyword-reference.md: 200: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/fsharp/language-reference/keyword-reference.md: 201: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
test-repos/dotnet-docs/docs/fsharp/language-reference/keyword-reference.md: 201: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/fsharp/language-reference/keyword-reference.md: 202: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
test-repos/dotnet-docs/docs/fsharp/language-reference/keyword-reference.md: 202: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/fsharp/language-reference/keyword-reference.md: 203: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
test-repos/dotnet-docs/docs/fsharp/language-reference/keyword-reference.md: 203: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/fsharp/language-reference/keyword-reference.md: 204: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
test-repos/dotnet-docs/docs/fsharp/language-reference/keyword-reference.md: 204: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/fsharp/language-reference/keyword-reference.md: 205: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
test-repos/dotnet-docs/docs/fsharp/language-reference/keyword-reference.md: 205: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/fsharp/language-reference/keyword-reference.md: 206: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
test-repos/dotnet-docs/docs/fsharp/language-reference/keyword-reference.md: 206: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/fsharp/language-reference/keyword-reference.md: 207: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
test-repos/dotnet-docs/docs/fsharp/language-reference/keyword-reference.md: 207: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/fsharp/language-reference/keyword-reference.md: 208: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
test-repos/dotnet-docs/docs/fsharp/language-reference/keyword-reference.md: 208: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/fsharp/language-reference/keyword-reference.md: 209: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
test-repos/dotnet-docs/docs/fsharp/language-reference/keyword-reference.md: 209: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/fsharp/language-reference/keyword-reference.md: 210: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
test-repos/dotnet-docs/docs/fsharp/language-reference/keyword-reference.md: 210: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/fsharp/style-guide/component-design-guidelines.md: 69: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/fsharp/style-guide/component-design-guidelines.md: 81: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/fundamentals/apicompat/diagnostic-ids.md: 44: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/fundamentals/diagnostics/runtime-loader-binder-events.md: 79: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/fundamentals/diagnostics/runtime-loader-binder-events.md: 81: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/fundamentals/diagnostics/runtime-loader-binder-events.md: 144: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/fundamentals/diagnostics/runtime-loader-binder-events.md: 192: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/fundamentals/diagnostics/runtime-loader-binder-events.md: 211: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/fundamentals/diagnostics/runtime-loader-binder-events.md: 234: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/fundamentals/diagnostics/runtime-loader-binder-events.md: 239: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/fundamentals/diagnostics/runtime-thread-events.md: 39: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/fundamentals/diagnostics/runtime-thread-events.md: 40: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/fundamentals/diagnostics/runtime-thread-events.md: 41: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/fundamentals/diagnostics/runtime-thread-events.md: 231: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/fundamentals/diagnostics/runtime-thread-events.md: 261: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/fundamentals/diagnostics/runtime-thread-events.md: 282: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/fundamentals/diagnostics/runtime-thread-events.md: 303: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/fundamentals/diagnostics/runtime-thread-events.md: 326: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/iot/tutorials/adc.md: 57: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/iot/tutorials/lcd-display.md: 50: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/machine-learning/how-to-guides/explain-machine-learning-model-permutation-feature-importance-ml-net.md: 27: MD055/table-pipe-style Table pipe style [Expected: leading_only; Actual: leading_and_trailing; Unexpected trailing pipe]␊
test-repos/dotnet-docs/docs/machine-learning/how-to-guides/explain-machine-learning-model-permutation-feature-importance-ml-net.md: 156: MD055/table-pipe-style Table pipe style [Expected: leading_only; Actual: leading_and_trailing; Unexpected trailing pipe]␊
test-repos/dotnet-docs/docs/machine-learning/how-to-guides/explain-machine-learning-model-permutation-feature-importance-ml-net.md: 157: MD055/table-pipe-style Table pipe style [Expected: leading_only; Actual: leading_and_trailing; Unexpected trailing pipe]␊
test-repos/dotnet-docs/docs/machine-learning/how-to-guides/explain-machine-learning-model-permutation-feature-importance-ml-net.md: 158: MD055/table-pipe-style Table pipe style [Expected: leading_only; Actual: no_leading_or_trailing; Missing leading pipe]␊
test-repos/dotnet-docs/docs/machine-learning/how-to-guides/explain-machine-learning-model-permutation-feature-importance-ml-net.md: 159: MD055/table-pipe-style Table pipe style [Expected: leading_only; Actual: no_leading_or_trailing; Missing leading pipe]␊
test-repos/dotnet-docs/docs/machine-learning/how-to-guides/explain-machine-learning-model-permutation-feature-importance-ml-net.md: 160: MD055/table-pipe-style Table pipe style [Expected: leading_only; Actual: no_leading_or_trailing; Missing leading pipe]␊
test-repos/dotnet-docs/docs/machine-learning/how-to-guides/explain-machine-learning-model-permutation-feature-importance-ml-net.md: 161: MD055/table-pipe-style Table pipe style [Expected: leading_only; Actual: no_leading_or_trailing; Missing leading pipe]␊
test-repos/dotnet-docs/docs/machine-learning/how-to-guides/explain-machine-learning-model-permutation-feature-importance-ml-net.md: 162: MD055/table-pipe-style Table pipe style [Expected: leading_only; Actual: no_leading_or_trailing; Missing leading pipe]␊
test-repos/dotnet-docs/docs/machine-learning/how-to-guides/explain-machine-learning-model-permutation-feature-importance-ml-net.md: 163: MD055/table-pipe-style Table pipe style [Expected: leading_only; Actual: no_leading_or_trailing; Missing leading pipe]␊
test-repos/dotnet-docs/docs/machine-learning/how-to-guides/explain-machine-learning-model-permutation-feature-importance-ml-net.md: 164: MD055/table-pipe-style Table pipe style [Expected: leading_only; Actual: no_leading_or_trailing; Missing leading pipe]␊
test-repos/dotnet-docs/docs/machine-learning/how-to-guides/explain-machine-learning-model-permutation-feature-importance-ml-net.md: 165: MD055/table-pipe-style Table pipe style [Expected: leading_only; Actual: no_leading_or_trailing; Missing leading pipe]␊
test-repos/dotnet-docs/docs/machine-learning/how-to-guides/explain-machine-learning-model-permutation-feature-importance-ml-net.md: 166: MD055/table-pipe-style Table pipe style [Expected: leading_only; Actual: no_leading_or_trailing; Missing leading pipe]␊
test-repos/dotnet-docs/docs/machine-learning/how-to-guides/explain-machine-learning-model-permutation-feature-importance-ml-net.md: 167: MD055/table-pipe-style Table pipe style [Expected: leading_only; Actual: no_leading_or_trailing; Missing leading pipe]␊
test-repos/dotnet-docs/docs/machine-learning/how-to-guides/explain-machine-learning-model-permutation-feature-importance-ml-net.md: 168: MD055/table-pipe-style Table pipe style [Expected: leading_only; Actual: no_leading_or_trailing; Missing leading pipe]␊
test-repos/dotnet-docs/docs/machine-learning/how-to-guides/explain-machine-learning-model-permutation-feature-importance-ml-net.md: 169: MD055/table-pipe-style Table pipe style [Expected: leading_only; Actual: no_leading_or_trailing; Missing leading pipe]␊
test-repos/dotnet-docs/docs/machine-learning/how-to-guides/how-to-use-the-automl-api.md: 44: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
test-repos/dotnet-docs/docs/machine-learning/how-to-guides/how-to-use-the-automl-api.md: 44: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/machine-learning/how-to-guides/how-to-use-the-automl-api.md: 45: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
test-repos/dotnet-docs/docs/machine-learning/how-to-guides/how-to-use-the-automl-api.md: 45: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/machine-learning/how-to-guides/how-to-use-the-automl-api.md: 46: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
test-repos/dotnet-docs/docs/machine-learning/how-to-guides/how-to-use-the-automl-api.md: 46: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/machine-learning/how-to-guides/prepare-data-ml-net.md: 331: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/machine-learning/how-to-guides/prepare-data-ml-net.md: 333: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/machine-learning/how-to-guides/prepare-data-ml-net.md: 334: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/machine-learning/how-to-guides/prepare-data-ml-net.md: 335: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/machine-learning/how-to-guides/prepare-data-ml-net.md: 336: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/machine-learning/how-to-guides/prepare-data-ml-net.md: 337: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/machine-learning/how-to-guides/prepare-data-ml-net.md: 338: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/machine-learning/resources/metrics.md: 76: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/machine-learning/tutorials/sentiment-analysis-model-builder.md: 53: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
test-repos/dotnet-docs/docs/machine-learning/tutorials/sentiment-analysis-model-builder.md: 53: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/machine-learning/tutorials/sentiment-analysis-model-builder.md: 54: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
test-repos/dotnet-docs/docs/machine-learning/tutorials/sentiment-analysis-model-builder.md: 54: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/machine-learning/tutorials/sentiment-analysis-model-builder.md: 55: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
test-repos/dotnet-docs/docs/machine-learning/tutorials/sentiment-analysis-model-builder.md: 55: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/standard/base-types/regular-expression-language-quick-reference.md: 108: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
test-repos/dotnet-docs/docs/standard/base-types/regular-expression-language-quick-reference.md: 108: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/standard/base-types/regular-expression-language-quick-reference.md: 109: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
test-repos/dotnet-docs/docs/standard/base-types/regular-expression-language-quick-reference.md: 109: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/standard/base-types/regular-expression-language-quick-reference.md: 110: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
test-repos/dotnet-docs/docs/standard/base-types/regular-expression-language-quick-reference.md: 110: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/standard/base-types/regular-expression-language-quick-reference.md: 111: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
test-repos/dotnet-docs/docs/standard/base-types/regular-expression-language-quick-reference.md: 111: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/standard/data/sqlite/connection-strings.md: 69: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/standard/data/sqlite/connection-strings.md: 71: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/standard/data/sqlite/connection-strings.md: 72: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/standard/exceptions/exception-class-and-properties.md: 25: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/standard/io/buffers.md: 55: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: trailing_only; Missing leading pipe]␊
test-repos/dotnet-docs/docs/standard/language-independence.md: 58: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: trailing_only; Unexpected trailing pipe]␊
test-repos/dotnet-docs/docs/standard/language-independence.md: 59: MD055/table-pipe-style Table pipe style [Expected: no_leading_or_trailing; Actual: leading_only; Unexpected leading pipe]␊
test-repos/dotnet-docs/docs/standard/serialization/system-text-json/migrate-from-newtonsoft.md: 88: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
test-repos/dotnet-docs/docs/standard/serialization/system-text-json/migrate-from-newtonsoft.md: 88: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/standard/serialization/system-text-json/migrate-from-newtonsoft.md: 137: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
test-repos/dotnet-docs/docs/standard/serialization/system-text-json/migrate-from-newtonsoft.md: 137: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/standard/serialization/system-text-json/migrate-from-newtonsoft.md: 186: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊
test-repos/dotnet-docs/docs/standard/serialization/system-text-json/migrate-from-newtonsoft.md: 186: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/visual-basic/language-reference/statements/end-keyword-statement.md: 61: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/visual-basic/language-reference/statements/end-keyword-statement.md: 62: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/visual-basic/language-reference/statements/end-keyword-statement.md: 63: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/visual-basic/language-reference/statements/end-keyword-statement.md: 64: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/visual-basic/language-reference/statements/end-keyword-statement.md: 65: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/visual-basic/language-reference/statements/end-keyword-statement.md: 66: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/visual-basic/language-reference/statements/end-keyword-statement.md: 67: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/visual-basic/language-reference/statements/end-keyword-statement.md: 68: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/docs/visual-basic/programming-guide/concepts/linq/classification-of-standard-query-operators-by-manner-of-execution.md: 59: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: trailing_only; Missing leading pipe]␊
test-repos/dotnet-docs/docs/visual-basic/programming-guide/concepts/linq/classification-of-standard-query-operators-by-manner-of-execution.md: 81: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: trailing_only; Missing leading pipe]␊
test-repos/dotnet-docs/includes/migration-guide/retargeting/wpf/wpf-textboxtext-can-be-out-of-sync-with-databinding.md: 15: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/includes/migration-guide/runtime/asp/sharing-session-state-with-aspnet-stateserver-requires-all-servers-web-farm.md: 15: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/includes/migration-guide/runtime/asp/webutilityhtmldecode-no-longer-decodes-invalid-input-sequences.md: 15: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/includes/migration-guide/runtime/core/change-behavior-for-taskwaitall-methods-with-time-out-arguments.md: 15: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/includes/migration-guide/runtime/core/some-net-apis-cause-first-chance-handled-entrypointnotfoundexceptions.md: 15: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/includes/migration-guide/runtime/ef/log-file-name-created-by-objectcontextcreatedatabase-method-has-changed.md: 15: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊
test-repos/dotnet-docs/includes/migration-guide/runtime/wpf/calling-itemsrefresh-on-wpf-listbox-listview-datagrid-with-items-selected.md: 15: MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]`
## https://github.com/electron/electron
> Expected linting violations
@ -484,12 +38,6 @@ Generated by [AVA](https://avajs.dev).
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
> Expected linting violations
''
## https://github.com/mkdocs/mkdocs
> Expected linting violations

Binary file not shown.