diff --git a/.github/dictionary.txt b/.github/dictionary.txt index 7756f917..68e1e5e9 100644 --- a/.github/dictionary.txt +++ b/.github/dictionary.txt @@ -32,6 +32,7 @@ config. CVE-\d+-\d+ docs-util ECMAScript +encodings ES2015 ES6 ESLint diff --git a/README.md b/README.md index 2059fde9..9a415fd5 100644 --- a/README.md +++ b/README.md @@ -149,6 +149,7 @@ playground for learning and exploring. - **[MD056](doc/md056.md)** *table-column-count* - Table column count - **[MD058](doc/md058.md)** *blanks-around-tables* - Tables should be surrounded by blank lines - **[MD059](doc/md059.md)** *descriptive-link-text* - Link text should be descriptive +- **[MD060](doc/md060.md)** *table-column-style* - Table column style @@ -190,7 +191,7 @@ rules at once. - **`ol`** - `MD029`, `MD030`, `MD032` - **`spaces`** - `MD018`, `MD019`, `MD020`, `MD021`, `MD023` - **`spelling`** - `MD044` -- **`table`** - `MD055`, `MD056`, `MD058` +- **`table`** - `MD055`, `MD056`, `MD058`, `MD060` - **`ul`** - `MD004`, `MD005`, `MD007`, `MD030`, `MD032` - **`url`** - `MD034` - **`whitespace`** - `MD009`, `MD010`, `MD012`, `MD027`, `MD028`, `MD030`, diff --git a/doc-build/md055.md b/doc-build/md055.md index c956f3e3..52e0979b 100644 --- a/doc-build/md055.md +++ b/doc-build/md055.md @@ -40,4 +40,4 @@ Rationale: Some parsers have difficulty with tables that are missing their leading or trailing pipe characters. The use of leading/trailing pipes can also help provide visual clarity. -[gfm-table-055]: https://github.github.com/gfm/#tables-extension- +[gfm-table-055]: https://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/organizing-information-with-tables diff --git a/doc-build/md056.md b/doc-build/md056.md index b885d59f..8d8f72f6 100644 --- a/doc-build/md056.md +++ b/doc-build/md056.md @@ -28,4 +28,4 @@ of cells or it will not be recognized as a table (per specification). Rationale: Extra cells in a row are usually not shown, so their data is lost. Missing cells in a row create holes in the table and suggest an omission. -[gfm-table-056]: https://github.github.com/gfm/#tables-extension- +[gfm-table-056]: https://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/organizing-information-with-tables diff --git a/doc-build/md060.md b/doc-build/md060.md new file mode 100644 index 00000000..4adc754e --- /dev/null +++ b/doc-build/md060.md @@ -0,0 +1,59 @@ +This rule is triggered when the column separators of a +[GitHub Flavored Markdown table][gfm-table-060] are used inconsistently. + +This rule recognizes three table column styles based on popular use: + +Style `aligned` looks the most like a table: + +```markdown +| Character | Meaning | +| --------- | ------- | +| Y | Yes | +| N | No | +``` + +Style `compact` uses a single space to pad cell content: + +```markdown +| Character | Meaning | +| --- | --- | +| Y | Yes | +| N | No | +``` + +Style `tight` uses no padding for cell content: + +```markdown +|Character|Meaning| +|---|---| +|Y|Yes| +|N|No| +``` + +When this rule's `style` parameter is set to `aligned`, `compact`, or `tight`, +every table must match the corresponding pattern and errors will be reported for +any violations. By default, or when the `any` style is used, each table is +analyzed to see if it satisfies any supported style. If so, no errors are +reported. If not, errors are be reported for whichever style would produce the +*fewest* errors (i.e., whichever style is the closest match). + +Note: Pipe alignment for the `aligned` style is based on character count, so +wide characters and multi-character encodings can produce unexpected results. +The following table is correctly aligned based on character count, though some +editors render the emoji wider: + + + + +```markdown +| Response | Emoji | +| -------- | ----- | +| Yes | ✅ | +| No | ❎ | +``` + + + +Rationale: Consistent formatting makes it easier to understand a document. + +[gfm-table-060]: https://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/organizing-information-with-tables diff --git a/doc/Rules.md b/doc/Rules.md index 2e6598a2..b79007e4 100644 --- a/doc/Rules.md +++ b/doc/Rules.md @@ -2549,7 +2549,7 @@ Rationale: Some parsers have difficulty with tables that are missing their leading or trailing pipe characters. The use of leading/trailing pipes can also help provide visual clarity. -[gfm-table-055]: https://github.github.com/gfm/#tables-extension- +[gfm-table-055]: https://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/organizing-information-with-tables @@ -2589,7 +2589,7 @@ of cells or it will not be recognized as a table (per specification). Rationale: Extra cells in a row are usually not shown, so their data is lost. Missing cells in a row create holes in the table and suggest an omission. -[gfm-table-056]: https://github.github.com/gfm/#tables-extension- +[gfm-table-056]: https://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/organizing-information-with-tables @@ -2678,6 +2678,79 @@ More information: - - + + +## `MD060` - Table column style + +Tags: `table` + +Aliases: `table-column-style` + +Parameters: + +- `style`: Table column style (`string`, default `any`, values `aligned` / + `any` / `compact` / `tight`) + +This rule is triggered when the column separators of a +[GitHub Flavored Markdown table][gfm-table-060] are used inconsistently. + +This rule recognizes three table column styles based on popular use: + +Style `aligned` looks the most like a table: + +```markdown +| Character | Meaning | +| --------- | ------- | +| Y | Yes | +| N | No | +``` + +Style `compact` uses a single space to pad cell content: + +```markdown +| Character | Meaning | +| --- | --- | +| Y | Yes | +| N | No | +``` + +Style `tight` uses no padding for cell content: + +```markdown +|Character|Meaning| +|---|---| +|Y|Yes| +|N|No| +``` + +When this rule's `style` parameter is set to `aligned`, `compact`, or `tight`, +every table must match the corresponding pattern and errors will be reported for +any violations. By default, or when the `any` style is used, each table is +analyzed to see if it satisfies any supported style. If so, no errors are +reported. If not, errors are be reported for whichever style would produce the +*fewest* errors (i.e., whichever style is the closest match). + +Note: Pipe alignment for the `aligned` style is based on character count, so +wide characters and multi-character encodings can produce unexpected results. +The following table is correctly aligned based on character count, though some +editors render the emoji wider: + + + + +```markdown +| Response | Emoji | +| -------- | ----- | +| Yes | ✅ | +| No | ❎ | +``` + + + +Rationale: Consistent formatting makes it easier to understand a document. + +[gfm-table-060]: https://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/organizing-information-with-tables + + + +```markdown +| Response | Emoji | +| -------- | ----- | +| Yes | ✅ | +| No | ❎ | +``` + + + +Rationale: Consistent formatting makes it easier to understand a document. + +[gfm-table-060]: https://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/organizing-information-with-tables diff --git a/lib/configuration-strict.d.ts b/lib/configuration-strict.d.ts index 1f3d545d..788bc64f 100644 --- a/lib/configuration-strict.d.ts +++ b/lib/configuration-strict.d.ts @@ -1186,6 +1186,28 @@ export interface ConfigurationStrict { */ prohibited_texts?: string[]; }; + /** + * MD060/table-column-style : Table column style : https://github.com/DavidAnson/markdownlint/blob/v0.38.0/doc/md060.md + */ + MD060?: + | boolean + | { + /** + * Table column style + */ + style?: "any" | "aligned" | "compact" | "tight"; + }; + /** + * MD060/table-column-style : Table column style : https://github.com/DavidAnson/markdownlint/blob/v0.38.0/doc/md060.md + */ + "table-column-style"?: + | boolean + | { + /** + * Table column style + */ + style?: "any" | "aligned" | "compact" | "tight"; + }; /** * headings : MD001, MD003, MD018, MD019, MD020, MD021, MD022, MD023, MD024, MD025, MD026, MD036, MD041, MD043 */ @@ -1279,7 +1301,7 @@ export interface ConfigurationStrict { */ images?: boolean; /** - * table : MD055, MD056, MD058 + * table : MD055, MD056, MD058, MD060 */ table?: boolean; } diff --git a/lib/md060.mjs b/lib/md060.mjs new file mode 100644 index 00000000..43fee807 --- /dev/null +++ b/lib/md060.mjs @@ -0,0 +1,118 @@ +// @ts-check + +import { filterByTypes } from "../helpers/micromark-helpers.cjs"; +import { filterByTypesCached } from "./cache.mjs"; + +/** @typedef {import("micromark-extension-gfm-table")} */ +/** @typedef {import("markdownlint").RuleOnErrorInfo} RuleOnErrorInfo */ + +/** + * Adds a RuleOnErrorInfo object to a list of RuleOnErrorInfo objects. + * + * @param {RuleOnErrorInfo[]} errors List of errors. + * @param {number} lineNumber Line number. + * @param {number} column Column number. + * @param {string} detail Detail message. + */ +function addError(errors, lineNumber, column, detail) { + errors.push({ + lineNumber, + detail, + "range": [ column, 1 ] + }); +} + +/** @type {import("markdownlint").Rule} */ +export default { + "names": [ "MD060", "table-column-style" ], + "description": "Table column style", + "tags": [ "table" ], + "parser": "micromark", + "function": function MD060(params, onError) { + const style = String(params.config.style || "any"); + const styleAlignedAllowed = (style === "any") || (style === "aligned"); + const styleCompactAllowed = (style === "any") || (style === "compact"); + const styleTightAllowed = (style === "any") || (style === "tight"); + + // Scan all tables/rows + const tables = filterByTypesCached([ "table" ]); + for (const table of tables) { + const rows = filterByTypes(table.children, [ "tableDelimiterRow", "tableRow" ]); + const headingRow = rows[0]; + + // Determine errors for style "aligned" + const errorsIfAligned = []; + if (styleAlignedAllowed) { + const headingDividerColumns = filterByTypes(headingRow.children, [ "tableCellDivider" ]).map((divider) => divider.startColumn); + for (const row of rows.slice(1)) { + const remainingHeadingDividerColumns = new Set(headingDividerColumns); + const rowDividerColumns = filterByTypes(row.children, [ "tableCellDivider" ]).map((divider) => divider.startColumn); + for (const dividerColumn of rowDividerColumns) { + if ((remainingHeadingDividerColumns.size > 0) && !remainingHeadingDividerColumns.delete(dividerColumn)) { + addError(errorsIfAligned, row.startLine, dividerColumn, "Table pipe does not align with heading for style \"aligned\""); + } + } + } + } + + // Determine errors for styles "compact" and "tight" + const errorsIfCompact = []; + const errorsIfTight = []; + if ( + (styleCompactAllowed || styleTightAllowed) && + !(styleAlignedAllowed && (errorsIfAligned.length === 0)) + ) { + for (const row of rows) { + const tokensOfInterest = filterByTypes(row.children, [ "tableCellDivider", "tableContent", "whitespace" ]); + for (let i = 0; i < tokensOfInterest.length; i++) { + const { startColumn, startLine, type } = tokensOfInterest[i]; + if (type === "tableCellDivider") { + const previous = tokensOfInterest[i - 1]; + if (previous) { + if (previous.type === "whitespace") { + if (previous.text.length !== 1) { + addError(errorsIfCompact, startLine, startColumn, "Table pipe has extra space to the left for style \"compact\""); + } + addError(errorsIfTight, startLine, startColumn, "Table pipe has space to the left for style \"tight\""); + } else { + addError(errorsIfCompact, startLine, startColumn, "Table pipe is missing space to the left for style \"compact\""); + } + } + const next = tokensOfInterest[i + 1]; + if (next) { + if (next.type === "whitespace") { + if (next.endColumn !== row.endColumn) { + if (next.text.length !== 1) { + addError(errorsIfCompact, startLine, startColumn, "Table pipe has extra space to the right for style \"compact\""); + } + addError(errorsIfTight, startLine, startColumn, "Table pipe has space to the right for style \"tight\""); + } + } else { + addError(errorsIfCompact, startLine, startColumn, "Table pipe is missing space to the right for style \"compact\""); + } + } + } + } + } + } + + // Report errors for whatever (allowed) style has the fewest + let errorInfos = errorsIfAligned; + if ( + styleCompactAllowed && + ((errorsIfCompact.length < errorInfos.length) || !styleAlignedAllowed) + ) { + errorInfos = errorsIfCompact; + } + if ( + styleTightAllowed && + ((errorsIfTight.length < errorInfos.length) || (!styleAlignedAllowed && !styleCompactAllowed)) + ) { + errorInfos = errorsIfTight; + } + for (const errorInfo of errorInfos) { + onError(errorInfo); + } + } + } +}; diff --git a/lib/rules.mjs b/lib/rules.mjs index e7694005..18148a41 100644 --- a/lib/rules.mjs +++ b/lib/rules.mjs @@ -54,6 +54,7 @@ import md055 from "./md055.mjs"; import md056 from "./md056.mjs"; import md058 from "./md058.mjs"; import md059 from "./md059.mjs"; +import md060 from "./md060.mjs"; const rules = [ md001, @@ -110,7 +111,8 @@ const rules = [ md056, // md057: See https://github.com/markdownlint/markdownlint md058, - md059 + md059, + md060 ]; for (const rule of rules) { const name = rule.names[0].toLowerCase(); diff --git a/schema/.markdownlint.jsonc b/schema/.markdownlint.jsonc index 66b23f8b..f89ccd80 100644 --- a/schema/.markdownlint.jsonc +++ b/schema/.markdownlint.jsonc @@ -333,5 +333,11 @@ "link", "more" ] + }, + + // MD060/table-column-style : Table column style : https://github.com/DavidAnson/markdownlint/blob/v0.38.0/doc/md060.md + "MD060": { + // Table column style + "style": "any" } } \ No newline at end of file diff --git a/schema/.markdownlint.yaml b/schema/.markdownlint.yaml index 0569ba80..d9d0b188 100644 --- a/schema/.markdownlint.yaml +++ b/schema/.markdownlint.yaml @@ -297,3 +297,8 @@ MD059: - "here" - "link" - "more" + +# MD060/table-column-style : Table column style : https://github.com/DavidAnson/markdownlint/blob/v0.38.0/doc/md060.md +MD060: + # Table column style + style: "any" diff --git a/schema/build-config-schema.mjs b/schema/build-config-schema.mjs index 22f7a390..6d78792e 100644 --- a/schema/build-config-schema.mjs +++ b/schema/build-config-schema.mjs @@ -604,6 +604,21 @@ for (const rule of rules) { } }; break; + case "MD060": + scheme.properties = { + "style": { + "description": "Table column style", + "type": "string", + "enum": [ + "any", + "aligned", + "compact", + "tight" + ], + "default": "any" + } + }; + break; default: custom = false; break; diff --git a/schema/markdownlint-config-schema-strict.json b/schema/markdownlint-config-schema-strict.json index af231498..51a8d193 100644 --- a/schema/markdownlint-config-schema-strict.json +++ b/schema/markdownlint-config-schema-strict.json @@ -1869,6 +1869,50 @@ }, "additionalProperties": false }, + "MD060": { + "description": "MD060/table-column-style : Table column style : https://github.com/DavidAnson/markdownlint/blob/v0.38.0/doc/md060.md", + "type": [ + "boolean", + "object" + ], + "default": true, + "properties": { + "style": { + "description": "Table column style", + "type": "string", + "enum": [ + "any", + "aligned", + "compact", + "tight" + ], + "default": "any" + } + }, + "additionalProperties": false + }, + "table-column-style": { + "description": "MD060/table-column-style : Table column style : https://github.com/DavidAnson/markdownlint/blob/v0.38.0/doc/md060.md", + "type": [ + "boolean", + "object" + ], + "default": true, + "properties": { + "style": { + "description": "Table column style", + "type": "string", + "enum": [ + "any", + "aligned", + "compact", + "tight" + ], + "default": "any" + } + }, + "additionalProperties": false + }, "headings": { "description": "headings : MD001, MD003, MD018, MD019, MD020, MD021, MD022, MD023, MD024, MD025, MD026, MD036, MD041, MD043", "type": "boolean", @@ -1985,7 +2029,7 @@ "default": true }, "table": { - "description": "table : MD055, MD056, MD058", + "description": "table : MD055, MD056, MD058, MD060", "type": "boolean", "default": true } diff --git a/schema/markdownlint-config-schema.json b/schema/markdownlint-config-schema.json index b157403e..cf6f0bee 100644 --- a/schema/markdownlint-config-schema.json +++ b/schema/markdownlint-config-schema.json @@ -1869,6 +1869,50 @@ }, "additionalProperties": false }, + "MD060": { + "description": "MD060/table-column-style : Table column style : https://github.com/DavidAnson/markdownlint/blob/v0.38.0/doc/md060.md", + "type": [ + "boolean", + "object" + ], + "default": true, + "properties": { + "style": { + "description": "Table column style", + "type": "string", + "enum": [ + "any", + "aligned", + "compact", + "tight" + ], + "default": "any" + } + }, + "additionalProperties": false + }, + "table-column-style": { + "description": "MD060/table-column-style : Table column style : https://github.com/DavidAnson/markdownlint/blob/v0.38.0/doc/md060.md", + "type": [ + "boolean", + "object" + ], + "default": true, + "properties": { + "style": { + "description": "Table column style", + "type": "string", + "enum": [ + "any", + "aligned", + "compact", + "tight" + ], + "default": "any" + } + }, + "additionalProperties": false + }, "headings": { "description": "headings : MD001, MD003, MD018, MD019, MD020, MD021, MD022, MD023, MD024, MD025, MD026, MD036, MD041, MD043", "type": "boolean", @@ -1985,7 +2029,7 @@ "default": true }, "table": { - "description": "table : MD055, MD056, MD058", + "description": "table : MD055, MD056, MD058, MD060", "type": "boolean", "default": true } diff --git a/test/break-all-the-rules.md b/test/break-all-the-rules.md index 6bb72b1e..e1daf687 100644 --- a/test/break-all-the-rules.md +++ b/test/break-all-the-rules.md @@ -107,7 +107,9 @@ Strong **with** different style {MD050} | table | header | |--------|--------| - {MD055} | cell | + {MD055} | cell | + +{MD060:-2} | table | header | |---------|--------| @@ -115,10 +117,12 @@ Strong **with** different style {MD050} Text | table {MD058} | -|-------| +| ------- | | cell {MD058} | > Blockquote +[click here](https://example.org) {MD059} + diff --git a/test/markdownlint-test-project.mjs b/test/markdownlint-test-project.mjs index 8de9b93e..4580f41c 100644 --- a/test/markdownlint-test-project.mjs +++ b/test/markdownlint-test-project.mjs @@ -17,7 +17,7 @@ const files = await globby(projectFiles); test("projectFiles", (t) => { t.plan(2); - t.is(files.length, 61); + t.is(files.length, 62); const options = { files, "config": require("../.markdownlint.json") @@ -40,7 +40,7 @@ test("projectFilesExtendedAscii", (t) => { "doc/md036.md" ]); const filteredFiles = files.filter((file) => !ignoreFiles.has(file)); - t.is(filteredFiles.length, 57); + t.is(filteredFiles.length, 58); const options = { "files": filteredFiles, "config": require("../.markdownlint.json"), diff --git a/test/markdownlint-test-repos-dotnet-docs.mjs b/test/markdownlint-test-repos-dotnet-docs.mjs index b3a1ec41..11c536f4 100644 --- a/test/markdownlint-test-repos-dotnet-docs.mjs +++ b/test/markdownlint-test-repos-dotnet-docs.mjs @@ -9,5 +9,5 @@ test("https://github.com/dotnet/docs", (t) => { const rootDir = "./test-repos/dotnet-docs"; const globPatterns = [ join(rootDir, "**/*.md") ]; const configPath = join(rootDir, ".markdownlint-cli2.jsonc"); - return lintTestRepo(t, globPatterns, configPath, true); + return lintTestRepo(t, globPatterns, configPath, { "table-column-style": false }, true); }); diff --git a/test/markdownlint-test-repos-mdn-content.mjs b/test/markdownlint-test-repos-mdn-content.mjs index 71d57968..718a3941 100644 --- a/test/markdownlint-test-repos-mdn-content.mjs +++ b/test/markdownlint-test-repos-mdn-content.mjs @@ -9,5 +9,5 @@ test("https://github.com/mdn/content", (t) => { const rootDir = "./test-repos/mdn-content"; const globPatterns = [ join(rootDir, "**/*.md") ]; const configPath = join(rootDir, ".markdownlint-cli2.jsonc"); - return lintTestRepo(t, globPatterns, configPath, true); + return lintTestRepo(t, globPatterns, configPath, { "table-column-style": false }, true); }); diff --git a/test/markdownlint-test-repos.mjs b/test/markdownlint-test-repos.mjs index 13d36fe9..d9b691ce 100644 --- a/test/markdownlint-test-repos.mjs +++ b/test/markdownlint-test-repos.mjs @@ -8,16 +8,19 @@ import jsYaml from "js-yaml"; import { lint, readConfig } from "markdownlint/promise"; import { markdownlintParallel } from "./markdownlint-test-parallel.mjs"; +/** @typedef {import("markdownlint").Configuration} Configuration */ + /** * Lints a test repository. * * @param {Object} t Test instance. * @param {string[]} globPatterns Array of files to in/exclude. * @param {string} configPath Path to config file. + * @param {Configuration} [configOverrides] Configuration overrides. * @param {boolean} [parallel] True to lint in parallel. * @returns {Promise} Test result. */ -export function lintTestRepo(t, globPatterns, configPath, parallel) { +export function lintTestRepo(t, globPatterns, configPath, configOverrides, parallel) { t.plan(1); const jsoncParse = (json) => { const config = jsoncParser.parse(json, [], { "allowTrailingComma": true }); @@ -31,13 +34,17 @@ export function lintTestRepo(t, globPatterns, configPath, parallel) { const [ files, rawConfig ] = globbyAndReadConfigResults; // eslint-disable-next-line no-console console.log(`${t.title}: Linting ${files.length} files...`); - const config = Object.fromEntries( + const cookedConfig = Object.fromEntries( Object.entries(rawConfig) .map(([ k, v ]) => [ k.replace(/header/, "heading"), v ]) ); + const config = { + ...cookedConfig, + ...configOverrides + }; return (parallel ? markdownlintParallel : lint)({ files, config diff --git a/test/markdownlint-test.mjs b/test/markdownlint-test.mjs index 405fa7fb..9bdc9bbb 100644 --- a/test/markdownlint-test.mjs +++ b/test/markdownlint-test.mjs @@ -468,7 +468,7 @@ test("styleAll", async(t) => { "MD042": [ 81 ], "MD045": [ 85 ], "MD046": [ 49, 73, 77 ], - "MD047": [ 140 ], + "MD047": [ 144 ], "MD048": [ 77 ], "MD049": [ 90 ], "MD050": [ 94 ], @@ -476,8 +476,10 @@ test("styleAll", async(t) => { "MD052": [ 98 ], "MD053": [ 100 ], "MD055": [ 110 ], - "MD056": [ 114 ], - "MD058": [ 117, 119 ] + "MD056": [ 116 ], + "MD058": [ 119, 121 ], + "MD059": [ 124 ], + "MD060": [ 110 ] } }; t.deepEqual(actualResult, expectedResult, "Undetected issues."); @@ -516,7 +518,7 @@ test("styleRelaxed", async(t) => { "MD042": [ 81 ], "MD045": [ 85 ], "MD046": [ 49, 73, 77 ], - "MD047": [ 140 ], + "MD047": [ 144 ], "MD048": [ 77 ], "MD049": [ 90 ], "MD050": [ 94 ], @@ -524,8 +526,10 @@ test("styleRelaxed", async(t) => { "MD052": [ 98 ], "MD053": [ 100 ], "MD055": [ 110 ], - "MD056": [ 114 ], - "MD058": [ 117, 119 ] + "MD056": [ 116 ], + "MD058": [ 119, 121 ], + "MD059": [ 124 ], + "MD060": [ 110 ] } }; t.deepEqual(actualResult, expectedResult, "Undetected issues."); @@ -833,7 +837,7 @@ test("customFileSystemAsync", (t) => new Promise((resolve) => { })); test("readme", async(t) => { - t.plan(130); + t.plan(132); const tagToRules = {}; for (const rule of rules) { for (const tag of rule.tags) { @@ -908,7 +912,7 @@ test("readme", async(t) => { }); test("validateJsonUsingConfigSchemaStrict", async(t) => { - t.plan(204); + t.plan(209); // @ts-ignore const ajv = new Ajv(ajvOptions); const validateSchemaStrict = ajv.compile(configSchemaStrict); @@ -1030,7 +1034,7 @@ test("validateConfigExampleJson", (t) => { }); test("allBuiltInRulesHaveValidUrl", (t) => { - t.plan(156); + t.plan(159); for (const rule of rules) { // @ts-ignore t.truthy(rule.information); diff --git a/test/snapshots/markdownlint-test-repos-small.mjs.md b/test/snapshots/markdownlint-test-repos-small.mjs.md index 6de719d3..78c117d1 100644 --- a/test/snapshots/markdownlint-test-repos-small.mjs.md +++ b/test/snapshots/markdownlint-test-repos-small.mjs.md @@ -252,7 +252,51 @@ Generated by [AVA](https://avajs.dev). > Expected linting violations - 'test-repos/electron-electron/docs/tutorial/menus.md: 203: MD052/reference-links-images Reference links and images should use a label that is defined [Missing link or image reference definition: "sharemenu"] [Context: "[share menu][ShareMenu]"]' + `test-repos/electron-electron/docs/api/structures/notification-action.md: 10: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/electron-electron/docs/api/structures/notification-action.md: 10: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/electron-electron/docs/breaking-changes.md: 2329: MD060/table-column-style Table column style [Table pipe is missing space to the right for style "compact"]␊ + test-repos/electron-electron/docs/breaking-changes.md: 2329: MD060/table-column-style Table column style [Table pipe is missing space to the left for style "compact"]␊ + test-repos/electron-electron/docs/breaking-changes.md: 2329: MD060/table-column-style Table column style [Table pipe is missing space to the right for style "compact"]␊ + test-repos/electron-electron/docs/breaking-changes.md: 2329: MD060/table-column-style Table column style [Table pipe is missing space to the left for style "compact"]␊ + test-repos/electron-electron/docs/breaking-changes.md: 2329: MD060/table-column-style Table column style [Table pipe is missing space to the right for style "compact"]␊ + test-repos/electron-electron/docs/breaking-changes.md: 2329: MD060/table-column-style Table column style [Table pipe is missing space to the left for style "compact"]␊ + test-repos/electron-electron/docs/tutorial/electron-timelines.md: 12: MD060/table-column-style Table column style [Table pipe has extra space to the right for style "compact"]␊ + test-repos/electron-electron/docs/tutorial/electron-timelines.md: 13: MD060/table-column-style Table column style [Table pipe has extra space to the right for style "compact"]␊ + test-repos/electron-electron/docs/tutorial/electron-timelines.md: 14: MD060/table-column-style Table column style [Table pipe has extra space to the right for style "compact"]␊ + test-repos/electron-electron/docs/tutorial/electron-timelines.md: 15: MD060/table-column-style Table column style [Table pipe has extra space to the right for style "compact"]␊ + test-repos/electron-electron/docs/tutorial/electron-timelines.md: 16: MD060/table-column-style Table column style [Table pipe has extra space to the right for style "compact"]␊ + test-repos/electron-electron/docs/tutorial/electron-timelines.md: 17: MD060/table-column-style Table column style [Table pipe has extra space to the right for style "compact"]␊ + test-repos/electron-electron/docs/tutorial/electron-timelines.md: 18: MD060/table-column-style Table column style [Table pipe has extra space to the right for style "compact"]␊ + test-repos/electron-electron/docs/tutorial/electron-timelines.md: 19: MD060/table-column-style Table column style [Table pipe has extra space to the right for style "compact"]␊ + test-repos/electron-electron/docs/tutorial/electron-timelines.md: 20: MD060/table-column-style Table column style [Table pipe has extra space to the right for style "compact"]␊ + test-repos/electron-electron/docs/tutorial/electron-timelines.md: 21: MD060/table-column-style Table column style [Table pipe has extra space to the right for style "compact"]␊ + test-repos/electron-electron/docs/tutorial/electron-timelines.md: 22: MD060/table-column-style Table column style [Table pipe has extra space to the right for style "compact"]␊ + test-repos/electron-electron/docs/tutorial/electron-timelines.md: 23: MD060/table-column-style Table column style [Table pipe has extra space to the right for style "compact"]␊ + test-repos/electron-electron/docs/tutorial/esm.md: 32: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/electron-electron/docs/tutorial/esm.md: 33: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/electron-electron/docs/tutorial/esm.md: 34: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/electron-electron/docs/tutorial/esm.md: 34: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/electron-electron/docs/tutorial/esm.md: 34: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/electron-electron/docs/tutorial/esm.md: 34: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/electron-electron/docs/tutorial/esm.md: 35: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/electron-electron/docs/tutorial/esm.md: 35: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/electron-electron/docs/tutorial/esm.md: 35: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/electron-electron/docs/tutorial/esm.md: 35: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/electron-electron/docs/tutorial/examples.md: 30: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/electron-electron/docs/tutorial/examples.md: 30: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/electron-electron/docs/tutorial/examples.md: 31: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/electron-electron/docs/tutorial/examples.md: 31: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/electron-electron/docs/tutorial/examples.md: 32: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/electron-electron/docs/tutorial/examples.md: 32: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/electron-electron/docs/tutorial/examples.md: 33: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/electron-electron/docs/tutorial/examples.md: 33: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/electron-electron/docs/tutorial/examples.md: 34: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/electron-electron/docs/tutorial/examples.md: 34: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/electron-electron/docs/tutorial/examples.md: 35: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/electron-electron/docs/tutorial/examples.md: 35: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/electron-electron/docs/tutorial/examples.md: 36: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/electron-electron/docs/tutorial/examples.md: 36: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/electron-electron/docs/tutorial/menus.md: 203: MD052/reference-links-images Reference links and images should use a label that is defined [Missing link or image reference definition: "sharemenu"] [Context: "[share menu][ShareMenu]"]` ## https://github.com/eslint/eslint @@ -311,8 +355,172 @@ Generated by [AVA](https://avajs.dev). > Expected linting violations - `test-repos/pi-hole-docs/docs/main/coverage.md: 7: MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ - test-repos/pi-hole-docs/docs/main/prerequisites.md: 7: MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]` + `test-repos/pi-hole-docs/docs/api/tls.md: 28: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/api/tls.md: 49: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/api/tls.md: 69: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/api/tls.md: 70: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/docker/upgrading/v5-v6.md: 12: MD060/table-column-style Table column style [Table pipe has space to the right for style "tight"]␊ + test-repos/pi-hole-docs/docs/docker/upgrading/v5-v6.md: 12: MD060/table-column-style Table column style [Table pipe has space to the left for style "tight"]␊ + test-repos/pi-hole-docs/docs/docker/upgrading/v5-v6.md: 12: MD060/table-column-style Table column style [Table pipe has space to the right for style "tight"]␊ + test-repos/pi-hole-docs/docs/docker/upgrading/v5-v6.md: 12: MD060/table-column-style Table column style [Table pipe has space to the left for style "tight"]␊ + test-repos/pi-hole-docs/docs/docker/upgrading/v5-v6.md: 31: MD060/table-column-style Table column style [Table pipe has space to the right for style "tight"]␊ + test-repos/pi-hole-docs/docs/docker/upgrading/v5-v6.md: 32: MD060/table-column-style Table column style [Table pipe has space to the right for style "tight"]␊ + test-repos/pi-hole-docs/docs/docker/upgrading/v5-v6.md: 33: MD060/table-column-style Table column style [Table pipe has space to the right for style "tight"]␊ + test-repos/pi-hole-docs/docs/docker/upgrading/v5-v6.md: 34: MD060/table-column-style Table column style [Table pipe has space to the right for style "tight"]␊ + test-repos/pi-hole-docs/docs/docker/upgrading/v5-v6.md: 35: MD060/table-column-style Table column style [Table pipe has space to the right for style "tight"]␊ + test-repos/pi-hole-docs/docs/docker/upgrading/v5-v6.md: 36: MD060/table-column-style Table column style [Table pipe has space to the right for style "tight"]␊ + test-repos/pi-hole-docs/docs/docker/upgrading/v5-v6.md: 37: MD060/table-column-style Table column style [Table pipe has space to the right for style "tight"]␊ + test-repos/pi-hole-docs/docs/docker/upgrading/v5-v6.md: 38: MD060/table-column-style Table column style [Table pipe has space to the right for style "tight"]␊ + test-repos/pi-hole-docs/docs/ftldns/cache_dump.md: 119: MD060/table-column-style Table column style [Table pipe is missing space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/ftldns/cache_dump.md: 119: MD060/table-column-style Table column style [Table pipe is missing space to the right for style "compact"]␊ + test-repos/pi-hole-docs/docs/ftldns/cache_dump.md: 131: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md: 66: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md: 66: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md: 67: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md: 67: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md: 68: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md: 68: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md: 69: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md: 69: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md: 70: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md: 70: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md: 88: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md: 88: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md: 89: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md: 89: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md: 90: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md: 90: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md: 91: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md: 91: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md: 92: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md: 92: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md: 116: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md: 116: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md: 117: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md: 117: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md: 118: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md: 118: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md: 119: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md: 119: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md: 120: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md: 120: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md: 139: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md: 139: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md: 140: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md: 140: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md: 141: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md: 141: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md: 142: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md: 142: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md: 143: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md: 143: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md: 162: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md: 162: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md: 163: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md: 163: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md: 164: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md: 164: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md: 165: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md: 165: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md: 166: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md: 166: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md: 190: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md: 190: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md: 191: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md: 191: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md: 192: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md: 192: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md: 193: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md: 193: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md: 194: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md: 194: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md: 212: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md: 212: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md: 213: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md: 213: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md: 214: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md: 214: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md: 215: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md: 215: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md: 216: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md: 216: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md: 235: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md: 235: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md: 236: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md: 236: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md: 237: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md: 237: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md: 238: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md: 238: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md: 239: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md: 239: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/guides/misc/allowlist-denylist.md: 14: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/main/coverage.md: 7: MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ + test-repos/pi-hole-docs/docs/main/pihole-command.md: 4: MD060/table-column-style Table column style [Table pipe has extra space to the right for style "compact"]␊ + test-repos/pi-hole-docs/docs/main/pihole-command.md: 11: MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/main/pihole-command.md: 34: MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/main/pihole-command.md: 36: MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/main/pihole-command.md: 42: MD060/table-column-style Table column style [Table pipe has extra space to the right for style "compact"]␊ + test-repos/pi-hole-docs/docs/main/pihole-command.md: 42: MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/main/pihole-command.md: 43: MD060/table-column-style Table column style [Table pipe has extra space to the right for style "compact"]␊ + test-repos/pi-hole-docs/docs/main/pihole-command.md: 44: MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/main/pihole-command.md: 46: MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/main/pihole-command.md: 61: MD060/table-column-style Table column style [Table pipe has extra space to the right for style "compact"]␊ + test-repos/pi-hole-docs/docs/main/pihole-command.md: 62: MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/main/pihole-command.md: 64: MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/main/pihole-command.md: 72: MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/main/pihole-command.md: 74: MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/main/pihole-command.md: 82: MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/main/pihole-command.md: 84: MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/main/pihole-command.md: 96: MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/main/pihole-command.md: 98: MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/main/pihole-command.md: 126: MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/main/pihole-command.md: 128: MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/main/pihole-command.md: 136: MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/main/pihole-command.md: 138: MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/main/pihole-command.md: 152: MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/main/pihole-command.md: 154: MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/main/pihole-command.md: 168: MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/main/pihole-command.md: 170: MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/main/pihole-command.md: 178: MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/main/pihole-command.md: 180: MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/main/pihole-command.md: 188: MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/main/pihole-command.md: 190: MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/main/pihole-command.md: 198: MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/main/pihole-command.md: 200: MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/main/pihole-command.md: 208: MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/main/pihole-command.md: 210: MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/main/pihole-command.md: 220: MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/main/pihole-command.md: 222: MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/main/pihole-command.md: 230: MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/main/pihole-command.md: 232: MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/main/pihole-command.md: 240: MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/main/pihole-command.md: 242: MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/main/prerequisites.md: 7: MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ + test-repos/pi-hole-docs/docs/main/prerequisites.md: 54: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/main/prerequisites.md: 55: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/main/prerequisites.md: 56: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/main/prerequisites.md: 57: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/main/prerequisites.md: 57: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/main/prerequisites.md: 57: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/main/prerequisites.md: 58: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/regex/tutorial.md: 84: MD060/table-column-style Table column style [Table pipe is missing space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/regex/tutorial.md: 84: MD060/table-column-style Table column style [Table pipe is missing space to the right for style "compact"]␊ + test-repos/pi-hole-docs/docs/regex/tutorial.md: 85: MD060/table-column-style Table column style [Table pipe is missing space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/regex/tutorial.md: 85: MD060/table-column-style Table column style [Table pipe is missing space to the right for style "compact"]␊ + test-repos/pi-hole-docs/docs/regex/tutorial.md: 86: MD060/table-column-style Table column style [Table pipe is missing space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/regex/tutorial.md: 86: MD060/table-column-style Table column style [Table pipe is missing space to the right for style "compact"]␊ + test-repos/pi-hole-docs/docs/regex/tutorial.md: 137: MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/regex/tutorial.md: 142: MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/regex/tutorial.md: 143: MD060/table-column-style Table column style [Table pipe is missing space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/regex/tutorial.md: 143: MD060/table-column-style Table column style [Table pipe is missing space to the right for style "compact"]␊ + test-repos/pi-hole-docs/docs/regex/tutorial.md: 144: MD060/table-column-style Table column style [Table pipe is missing space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/regex/tutorial.md: 144: MD060/table-column-style Table column style [Table pipe is missing space to the right for style "compact"]␊ + test-repos/pi-hole-docs/docs/regex/tutorial.md: 144: MD060/table-column-style Table column style [Table pipe is missing space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/regex/tutorial.md: 144: MD060/table-column-style Table column style [Table pipe is missing space to the right for style "compact"]␊ + test-repos/pi-hole-docs/docs/regex/tutorial.md: 145: MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/regex/tutorial.md: 146: MD060/table-column-style Table column style [Table pipe is missing space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/regex/tutorial.md: 147: MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]` ## https://github.com/v8/v8.dev @@ -418,6 +626,13 @@ Generated by [AVA](https://avajs.dev). test-repos/v8-v8-dev/src/blog/v8-nodejs.md: 29: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊ test-repos/v8-v8-dev/src/blog/v8-release-80.md: 46: MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| || Des..."]␊ test-repos/v8-v8-dev/src/blog/v8-release-80.md: 53: MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| ^^ | GC | -7%..."]␊ + test-repos/v8-v8-dev/src/blog/v8-release-80.md: 47: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/v8-v8-dev/src/blog/v8-release-80.md: 48: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/v8-v8-dev/src/blog/v8-release-80.md: 49: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/v8-v8-dev/src/blog/v8-release-80.md: 50: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/v8-v8-dev/src/blog/v8-release-80.md: 51: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/v8-v8-dev/src/blog/v8-release-80.md: 52: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/v8-v8-dev/src/blog/v8-release-80.md: 53: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ test-repos/v8-v8-dev/src/blog/v8-release-86.md: 16: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊ test-repos/v8-v8-dev/src/blog/wasm-decompile.md: 153: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊ test-repos/v8-v8-dev/src/blog/wasm-decompile.md: 153: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊ @@ -496,6 +711,10 @@ Generated by [AVA](https://avajs.dev). test-repos/v8-v8-dev/src/features/promise-combinators.md: 120: MD033/no-inline-html Inline HTML [Element: feature-support]␊ test-repos/v8-v8-dev/src/features/promise-combinators.md: 23: MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| name ..."]␊ test-repos/v8-v8-dev/src/features/promise-combinators.md: 28: MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| [\`Promise.any\`](#promise.any..."]␊ + test-repos/v8-v8-dev/src/features/promise-combinators.md: 25: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/v8-v8-dev/src/features/promise-combinators.md: 26: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/v8-v8-dev/src/features/promise-combinators.md: 27: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/v8-v8-dev/src/features/promise-combinators.md: 28: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ test-repos/v8-v8-dev/src/features/promise-finally.md: 82: MD033/no-inline-html Inline HTML [Element: feature-support]␊ test-repos/v8-v8-dev/src/features/regexp-match-indices.md: 134: MD033/no-inline-html Inline HTML [Element: feature-support]␊ test-repos/v8-v8-dev/src/features/regexp-v-flag.md: 254: MD033/no-inline-html Inline HTML [Element: feature-support]␊ @@ -534,14 +753,45 @@ Generated by [AVA](https://avajs.dev). test-repos/webhintio-hint/packages/hint-no-protocol-relative-urls/README.md: 110: MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "ie issue"] [Context: "[ie issue]: https://www.steves..."]␊ test-repos/webhintio-hint/packages/hint-performance-budget/README.md: 198: MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "tcp handshake"] [Context: "[tcp handshake]: https://hpbn...."]␊ test-repos/webhintio-hint/packages/hint-strict-transport-security/README.md: 278: MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "mod_mime"] [Context: "[mod_mime]: https://httpd.apac..."]␊ + test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md: 21: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md: 21: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md: 22: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md: 22: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md: 22: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md: 22: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md: 23: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md: 23: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md: 23: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md: 23: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md: 24: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md: 24: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md: 25: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md: 25: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md: 26: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md: 26: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md: 27: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md: 27: MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ test-repos/webhintio-hint/packages/hint-x-content-type-options/README.md: 181: MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "fetch spec issue"] [Context: "[fetch spec issue]: https://gi..."]␊ test-repos/webhintio-hint/packages/hint/docs/about/CONTRIBUTORS.md: 10: MD056/table-column-count Table column count [Expected: 3; Actual: 2; Too few cells, row will be missing data]␊ test-repos/webhintio-hint/packages/hint/docs/about/GOVERNANCE.md: 218: MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "openjs foundation"] [Context: "[OpenJS Foundation]: https://o..."]␊ test-repos/webhintio-hint/packages/hint/docs/about/GOVERNANCE.md: 219: MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "webhint org"] [Context: "[webhint org]: https://github...."]␊ test-repos/webhintio-hint/packages/hint/docs/contributor-guide/getting-started/architecture.md: 78: MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "typescript"] [Context: "[typescript]: https://www.type..."]␊ test-repos/webhintio-hint/packages/hint/docs/contributor-guide/getting-started/development-environment.md: 120: MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "npm"] [Context: "[npm]: https://www.npmjs.com/g..."]␊ + test-repos/webhintio-hint/packages/hint/docs/contributor-guide/getting-started/development-environment.md: 94: MD060/table-column-style Table column style [Table pipe is missing space to the left for style "compact"]␊ + test-repos/webhintio-hint/packages/hint/docs/contributor-guide/getting-started/development-environment.md: 95: MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/webhintio-hint/packages/hint/docs/contributor-guide/getting-started/development-environment.md: 100: MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/webhintio-hint/packages/hint/docs/contributor-guide/getting-started/development-environment.md: 102: MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/webhintio-hint/packages/hint/docs/contributor-guide/getting-started/development-environment.md: 104: MD060/table-column-style Table column style [Table pipe is missing space to the left for style "compact"]␊ test-repos/webhintio-hint/packages/hint/docs/contributor-guide/how-to/hint.md: 150: MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "custom hint"] [Context: "[custom hint]: ../guides/creat..."]␊ test-repos/webhintio-hint/packages/hint/docs/contributor-guide/how-to/hint.md: 154: MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "npx issue"] [Context: "[npx issue]: https://github.co..."]␊ + test-repos/webhintio-hint/packages/hint/docs/contributor-guide/index.md: 8: MD060/table-column-style Table column style [Table pipe is missing space to the right for style "compact"]␊ + test-repos/webhintio-hint/packages/hint/docs/contributor-guide/index.md: 8: MD060/table-column-style Table column style [Table pipe is missing space to the right for style "compact"]␊ + test-repos/webhintio-hint/packages/hint/docs/user-guide/concepts/hints.md: 82: MD060/table-column-style Table column style [Table pipe is missing space to the right for style "compact"]␊ + test-repos/webhintio-hint/packages/hint/docs/user-guide/concepts/hints.md: 82: MD060/table-column-style Table column style [Table pipe is missing space to the right for style "compact"]␊ + test-repos/webhintio-hint/packages/hint/docs/user-guide/concepts/hints.md: 113: MD060/table-column-style Table column style [Table pipe is missing space to the right for style "compact"]␊ + test-repos/webhintio-hint/packages/hint/docs/user-guide/concepts/hints.md: 113: MD060/table-column-style Table column style [Table pipe is missing space to the right for style "compact"]␊ + test-repos/webhintio-hint/packages/hint/docs/user-guide/configuring-webhint/summary.md: 21: MD060/table-column-style Table column style [Table pipe is missing space to the right for style "compact"]␊ + test-repos/webhintio-hint/packages/hint/docs/user-guide/configuring-webhint/summary.md: 21: MD060/table-column-style Table column style [Table pipe is missing space to the right for style "compact"]␊ test-repos/webhintio-hint/packages/hint/docs/user-guide/development-flow-integration/local-server.md: 58: MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "jenkins"] [Context: "[jenkins]: https://jenkins.io"]␊ test-repos/webhintio-hint/packages/hint/docs/user-guide/development-flow-integration/local-server.md: 59: MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "local-server"] [Context: "[local-server]: #test-a-local-..."]␊ test-repos/webhintio-hint/packages/hint/docs/user-guide/development-flow-integration/local-server.md: 62: MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "webhint github"] [Context: "[webhint github]: https://gith..."]␊ @@ -549,10 +799,44 @@ Generated by [AVA](https://avajs.dev). test-repos/webhintio-hint/packages/hint/docs/user-guide/development-flow-integration/local-server.md: 64: MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "webhint.io"] [Context: "[webhint.io]: https://webhint...."]␊ test-repos/webhintio-hint/packages/hint/docs/user-guide/development-flow-integration/local-server.md: 65: MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "webhintio repo"] [Context: "[webhintio repo]: https://gith..."]␊ test-repos/webhintio-hint/packages/hint/docs/user-guide/development-flow-integration/travis-and-azure.md: 4: MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊ + test-repos/webhintio-hint/packages/hint/docs/user-guide/development-flow-integration/travis-and-azure.md: 405: MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/webhintio-hint/packages/hint/docs/user-guide/development-flow-integration/travis-and-azure.md: 406: MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/webhintio-hint/packages/hint/docs/user-guide/development-flow-integration/travis-and-azure.md: 406: MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/webhintio-hint/packages/hint/docs/user-guide/development-flow-integration/travis-and-azure.md: 407: MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/webhintio-hint/packages/hint/docs/user-guide/development-flow-integration/travis-and-azure.md: 407: MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/webhintio-hint/packages/hint/docs/user-guide/development-flow-integration/travis-and-azure.md: 408: MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/webhintio-hint/packages/hint/docs/user-guide/development-flow-integration/travis-and-azure.md: 409: MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/webhintio-hint/packages/hint/docs/user-guide/development-flow-integration/travis-and-azure.md: 410: MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/webhintio-hint/packages/hint/docs/user-guide/development-flow-integration/travis-and-azure.md: 411: MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/webhintio-hint/packages/hint/docs/user-guide/development-flow-integration/travis-and-azure.md: 411: MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ test-repos/webhintio-hint/packages/hint/docs/user-guide/index.md: 178: MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "nodejsdownloadcurrent"] [Context: "[NodejsDownloadCurrent]: https..."]␊ + test-repos/webhintio-hint/packages/hint/docs/user-guide/index.md: 49: MD060/table-column-style Table column style [Table pipe is missing space to the right for style "compact"]␊ + test-repos/webhintio-hint/packages/hint/docs/user-guide/index.md: 49: MD060/table-column-style Table column style [Table pipe is missing space to the right for style "compact"]␊ test-repos/webhintio-hint/packages/hint/docs/user-guide/troubleshoot/summary.md: 137: MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "githubwebhintiohint308"] [Context: "[GithubWebhintioHint308]: http..."]␊ test-repos/webhintio-hint/packages/hint/docs/user-guide/troubleshoot/summary.md: 141: MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "npmjspackageiltorb"] [Context: "[NpmjsPackageIltorb]: https://..."]␊ - test-repos/webhintio-hint/packages/parser-html/README.md: 51: MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "events"] [Context: "[events]: https://webhint.io/d..."]` + test-repos/webhintio-hint/packages/parser-html/README.md: 51: MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "events"] [Context: "[events]: https://webhint.io/d..."]␊ + test-repos/webhintio-hint/packages/utils-compat-data/README.md: 65: MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/webhintio-hint/packages/utils-compat-data/README.md: 65: MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/webhintio-hint/packages/utils-compat-data/README.md: 66: MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/webhintio-hint/packages/utils-compat-data/README.md: 67: MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/webhintio-hint/packages/utils-compat-data/README.md: 67: MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/webhintio-hint/packages/utils-compat-data/README.md: 68: MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/webhintio-hint/packages/utils-compat-data/README.md: 68: MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/webhintio-hint/packages/utils-compat-data/README.md: 69: MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/webhintio-hint/packages/utils-compat-data/README.md: 70: MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/webhintio-hint/packages/utils-compat-data/README.md: 71: MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/webhintio-hint/packages/utils-compat-data/README.md: 71: MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/webhintio-hint/packages/utils-compat-data/README.md: 72: MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/webhintio-hint/packages/utils-compat-data/README.md: 73: MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/webhintio-hint/packages/utils-compat-data/README.md: 73: MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/webhintio-hint/packages/utils-compat-data/README.md: 74: MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/webhintio-hint/packages/utils-compat-data/README.md: 74: MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/webhintio-hint/packages/utils-compat-data/README.md: 75: MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/webhintio-hint/packages/utils-compat-data/README.md: 75: MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/webhintio-hint/packages/utils-compat-data/README.md: 76: MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/webhintio-hint/packages/utils-compat-data/README.md: 77: MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/webhintio-hint/packages/utils-compat-data/README.md: 77: MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/webhintio-hint/packages/utils-compat-data/README.md: 78: MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]` ## https://github.com/webpack/webpack.js.org diff --git a/test/snapshots/markdownlint-test-repos-small.mjs.snap b/test/snapshots/markdownlint-test-repos-small.mjs.snap index c83ad013..ce1d763d 100644 Binary files a/test/snapshots/markdownlint-test-repos-small.mjs.snap and b/test/snapshots/markdownlint-test-repos-small.mjs.snap differ diff --git a/test/snapshots/markdownlint-test-scenarios.mjs.md b/test/snapshots/markdownlint-test-scenarios.mjs.md index 7d7a0ccc..af779a80 100644 --- a/test/snapshots/markdownlint-test-scenarios.mjs.md +++ b/test/snapshots/markdownlint-test-scenarios.mjs.md @@ -7620,7 +7620,7 @@ Generated by [AVA](https://avajs.dev). insertText: `␊ `, }, - lineNumber: 140, + lineNumber: 144, ruleDescription: 'Files should end with a single newline character', ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md047.md', ruleNames: [ @@ -7815,7 +7815,7 @@ Generated by [AVA](https://avajs.dev). 1, ], fixInfo: null, - lineNumber: 114, + lineNumber: 116, ruleDescription: 'Table column count', ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md056.md', ruleNames: [ @@ -7831,7 +7831,7 @@ Generated by [AVA](https://avajs.dev). insertText: `␊ `, }, - lineNumber: 117, + lineNumber: 119, ruleDescription: 'Tables should be surrounded by blank lines', ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md058.md', ruleNames: [ @@ -7846,9 +7846,9 @@ Generated by [AVA](https://avajs.dev). fixInfo: { insertText: `␊ `, - lineNumber: 120, + lineNumber: 122, }, - lineNumber: 119, + lineNumber: 121, ruleDescription: 'Tables should be surrounded by blank lines', ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md058.md', ruleNames: [ @@ -7856,6 +7856,38 @@ Generated by [AVA](https://avajs.dev). 'blanks-around-tables', ], }, + { + errorContext: '[click here]', + errorDetail: null, + errorRange: [ + 2, + 10, + ], + fixInfo: null, + lineNumber: 124, + ruleDescription: 'Link text should be descriptive', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md059.md', + ruleNames: [ + 'MD059', + 'descriptive-link-text', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 18, + 1, + ], + fixInfo: null, + lineNumber: 110, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, ], fixed: `## Heading 1 {MD041:1}␊ ␊ @@ -7967,7 +7999,9 @@ Generated by [AVA](https://avajs.dev). ␊ | table | header |␊ |--------|--------|␊ - {MD055} | cell |␊ + {MD055} | cell |␊ + ␊ + {MD060:-2}␊ ␊ | table | header |␊ |---------|--------|␊ @@ -7976,11 +8010,13 @@ Generated by [AVA](https://avajs.dev). Text␊ ␊ | table {MD058} |␊ - |-------|␊ + | ------- |␊ | cell {MD058} |␊ ␊ > Blockquote␊ ␊ + [click here](https://example.org) {MD059}␊ + ␊ ␊ `, @@ -57720,6 +57757,10168 @@ Generated by [AVA](https://avajs.dev). `, } +## table-column-style-aligned.md + +> Snapshot 1 + + { + errors: [ + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 22, + 1, + ], + fixInfo: null, + lineNumber: 12, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 32, + 1, + ], + fixInfo: null, + lineNumber: 12, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 12, + 1, + ], + fixInfo: null, + lineNumber: 14, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 24, + 1, + ], + fixInfo: null, + lineNumber: 14, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 22, + 1, + ], + fixInfo: null, + lineNumber: 15, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 32, + 1, + ], + fixInfo: null, + lineNumber: 15, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 20, + 1, + ], + fixInfo: null, + lineNumber: 28, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 10, + 1, + ], + fixInfo: null, + lineNumber: 30, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 22, + 1, + ], + fixInfo: null, + lineNumber: 30, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 20, + 1, + ], + fixInfo: null, + lineNumber: 31, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 8, + 1, + ], + fixInfo: null, + lineNumber: 39, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 20, + 1, + ], + fixInfo: null, + lineNumber: 39, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 27, + 1, + ], + fixInfo: null, + lineNumber: 39, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 13, + 1, + ], + fixInfo: null, + lineNumber: 40, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 30, + 1, + ], + fixInfo: null, + lineNumber: 40, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 37, + 1, + ], + fixInfo: null, + lineNumber: 40, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 8, + 1, + ], + fixInfo: null, + lineNumber: 41, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 15, + 1, + ], + fixInfo: null, + lineNumber: 41, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 22, + 1, + ], + fixInfo: null, + lineNumber: 41, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 5, + 1, + ], + fixInfo: null, + lineNumber: 46, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 9, + 1, + ], + fixInfo: null, + lineNumber: 46, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 13, + 1, + ], + fixInfo: null, + lineNumber: 46, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 8, + 1, + ], + fixInfo: null, + lineNumber: 47, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 20, + 1, + ], + fixInfo: null, + lineNumber: 47, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 27, + 1, + ], + fixInfo: null, + lineNumber: 47, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 13, + 1, + ], + fixInfo: null, + lineNumber: 48, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 30, + 1, + ], + fixInfo: null, + lineNumber: 48, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 37, + 1, + ], + fixInfo: null, + lineNumber: 48, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 8, + 1, + ], + fixInfo: null, + lineNumber: 49, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 15, + 1, + ], + fixInfo: null, + lineNumber: 49, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 22, + 1, + ], + fixInfo: null, + lineNumber: 49, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 23, + 1, + ], + fixInfo: null, + lineNumber: 55, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 31, + 1, + ], + fixInfo: null, + lineNumber: 55, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 9, + 1, + ], + fixInfo: null, + lineNumber: 56, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 18, + 1, + ], + fixInfo: null, + lineNumber: 56, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 29, + 1, + ], + fixInfo: null, + lineNumber: 56, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 9, + 1, + ], + fixInfo: null, + lineNumber: 57, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 17, + 1, + ], + fixInfo: null, + lineNumber: 57, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 31, + 1, + ], + fixInfo: null, + lineNumber: 57, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 6, + 1, + ], + fixInfo: null, + lineNumber: 65, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 18, + 1, + ], + fixInfo: null, + lineNumber: 65, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 11, + 1, + ], + fixInfo: null, + lineNumber: 66, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 28, + 1, + ], + fixInfo: null, + lineNumber: 66, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 6, + 1, + ], + fixInfo: null, + lineNumber: 67, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 13, + 1, + ], + fixInfo: null, + lineNumber: 67, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 4, + 1, + ], + fixInfo: null, + lineNumber: 72, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 6, + 1, + ], + fixInfo: null, + lineNumber: 73, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 18, + 1, + ], + fixInfo: null, + lineNumber: 73, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 11, + 1, + ], + fixInfo: null, + lineNumber: 74, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 28, + 1, + ], + fixInfo: null, + lineNumber: 74, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 6, + 1, + ], + fixInfo: null, + lineNumber: 75, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 13, + 1, + ], + fixInfo: null, + lineNumber: 75, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 4, + 1, + ], + fixInfo: null, + lineNumber: 80, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 12, + 1, + ], + fixInfo: null, + lineNumber: 80, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 21, + 1, + ], + fixInfo: null, + lineNumber: 81, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 11, + 1, + ], + fixInfo: null, + lineNumber: 82, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 28, + 1, + ], + fixInfo: null, + lineNumber: 82, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 7, + 1, + ], + fixInfo: null, + lineNumber: 83, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 14, + 1, + ], + fixInfo: null, + lineNumber: 83, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 6, + 1, + ], + fixInfo: null, + lineNumber: 91, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 16, + 1, + ], + fixInfo: null, + lineNumber: 91, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 21, + 1, + ], + fixInfo: null, + lineNumber: 91, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 11, + 1, + ], + fixInfo: null, + lineNumber: 92, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 26, + 1, + ], + fixInfo: null, + lineNumber: 92, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 31, + 1, + ], + fixInfo: null, + lineNumber: 92, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 6, + 1, + ], + fixInfo: null, + lineNumber: 93, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 11, + 1, + ], + fixInfo: null, + lineNumber: 93, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 16, + 1, + ], + fixInfo: null, + lineNumber: 93, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 3, + 1, + ], + fixInfo: null, + lineNumber: 98, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 5, + 1, + ], + fixInfo: null, + lineNumber: 98, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 7, + 1, + ], + fixInfo: null, + lineNumber: 98, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 6, + 1, + ], + fixInfo: null, + lineNumber: 99, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 16, + 1, + ], + fixInfo: null, + lineNumber: 99, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 21, + 1, + ], + fixInfo: null, + lineNumber: 99, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 11, + 1, + ], + fixInfo: null, + lineNumber: 100, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 26, + 1, + ], + fixInfo: null, + lineNumber: 100, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 31, + 1, + ], + fixInfo: null, + lineNumber: 100, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 6, + 1, + ], + fixInfo: null, + lineNumber: 101, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 11, + 1, + ], + fixInfo: null, + lineNumber: 101, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 16, + 1, + ], + fixInfo: null, + lineNumber: 101, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 17, + 1, + ], + fixInfo: null, + lineNumber: 106, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 7, + 1, + ], + fixInfo: null, + lineNumber: 107, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 23, + 1, + ], + fixInfo: null, + lineNumber: 107, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 12, + 1, + ], + fixInfo: null, + lineNumber: 108, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 27, + 1, + ], + fixInfo: null, + lineNumber: 108, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 32, + 1, + ], + fixInfo: null, + lineNumber: 108, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 6, + 1, + ], + fixInfo: null, + lineNumber: 109, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 13, + 1, + ], + fixInfo: null, + lineNumber: 109, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 5, + 1, + ], + fixInfo: null, + lineNumber: 117, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 15, + 1, + ], + fixInfo: null, + lineNumber: 117, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 10, + 1, + ], + fixInfo: null, + lineNumber: 118, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 25, + 1, + ], + fixInfo: null, + lineNumber: 118, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 5, + 1, + ], + fixInfo: null, + lineNumber: 119, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 10, + 1, + ], + fixInfo: null, + lineNumber: 119, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 2, + 1, + ], + fixInfo: null, + lineNumber: 124, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 4, + 1, + ], + fixInfo: null, + lineNumber: 124, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 5, + 1, + ], + fixInfo: null, + lineNumber: 125, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 15, + 1, + ], + fixInfo: null, + lineNumber: 125, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 10, + 1, + ], + fixInfo: null, + lineNumber: 126, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 25, + 1, + ], + fixInfo: null, + lineNumber: 126, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 5, + 1, + ], + fixInfo: null, + lineNumber: 127, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 10, + 1, + ], + fixInfo: null, + lineNumber: 127, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 16, + 1, + ], + fixInfo: null, + lineNumber: 132, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 6, + 1, + ], + fixInfo: null, + lineNumber: 133, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 16, + 1, + ], + fixInfo: null, + lineNumber: 133, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 10, + 1, + ], + fixInfo: null, + lineNumber: 134, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 25, + 1, + ], + fixInfo: null, + lineNumber: 134, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 5, + 1, + ], + fixInfo: null, + lineNumber: 135, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 12, + 1, + ], + fixInfo: null, + lineNumber: 135, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + ], + fixed: `# Table Column Style - Aligned␊ + ␊ + ## Aligned / Edge Pipes␊ + ␊ + | Heading | Heading | Heading |␊ + | ------- | --------- | ------- |␊ + | Text | Text text | Text |␊ + | Text | Text text | Text |␊ + | Text | Text text | Text |␊ + ␊ + | Heading | Heading | Heading |␊ + | ------- | -------- | ------- |␊ + | Text | Text text | Text |␊ + | Text | Text text | Text |␊ + | Text | Text tex | Text |␊ + ␊ + {MD060:-5} {MD060:-3} {MD060:-2}␊ + ␊ + ## Aligned / No Edge Pipes␊ + ␊ + Heading | Heading | Heading␊ + ------- | --------- | -------␊ + Text | Text text | Text␊ + Text | Text text | Text␊ + Text | Text text | Text␊ + ␊ + Heading | Heading | Heading␊ + ------- | -------- | --------␊ + Text | Text text | Text␊ + Text | Text text | Text␊ + Text | Text tex | Text␊ + ␊ + {MD060:-5} {MD060:-3} {MD060:-2}␊ + ␊ + ## Compact / Edge Pipes␊ + ␊ + | Heading | Heading | Heading |␊ + | ------- | ------- | ------- |␊ + | Text | Text text | Text |␊ + | Text text | Text text text | Text |␊ + | Text | Text | Text |␊ + ␊ + {MD060:-4} {MD060:-3} {MD060:-2}␊ + ␊ + | Heading | Heading | Heading |␊ + | - | - | - |␊ + | Text | Text text | Text |␊ + | Text text | Text text text | Text |␊ + | Text | Text | Text |␊ + ␊ + {MD060:-5} {MD060:-4} {MD060:-3} {MD060:-2}␊ + ␊ + | Heading | Heading | Heading |␊ + | - | --- | - |␊ + | Text | Text text | Text |␊ + | Text | Text | Text |␊ + | Text | Text | Text |␊ + ␊ + {MD060:-4} {MD060:-3} {MD060:-2}␊ + ␊ + ## Compact / No Edge Pipes␊ + ␊ + Heading | Heading | Heading␊ + ------- | ------- | -------␊ + Text | Text text | Text␊ + Text text | Text text text | Text␊ + Text | Text | Text␊ + ␊ + {MD060:-4} {MD060:-3} {MD060:-2}␊ + ␊ + Heading | Heading | Heading␊ + -- | -- | --␊ + Text | Text text | Text␊ + Text text | Text text text | Text␊ + Text | Text | Text␊ + ␊ + {MD060:-5} {MD060:-4} {MD060:-3} {MD060:-2}␊ + ␊ + Heading | Heading | Heading␊ + -- | --- | --␊ + Text | Text text | Text␊ + Text text | Text text text | Text␊ + Text | Text | Text␊ + ␊ + {MD060:-5} {MD060:-4} {MD060:-3} {MD060:-2}␊ + ␊ + ## Tight / Edge Pipes␊ + ␊ + |Heading|Heading|Heading|␊ + |-------|-------|-------|␊ + |Text|Text text|Text|␊ + |Text text|Text text text|Text|␊ + |Text|Text|Text|␊ + ␊ + {MD060:-4} {MD060:-3} {MD060:-2}␊ + ␊ + |Heading|Heading|Heading|␊ + |-|-|-|␊ + |Text|Text text|Text|␊ + |Text text|Text text text|Text|␊ + |Text|Text|Text|␊ + ␊ + {MD060:-5} {MD060:-4} {MD060:-3} {MD060:-2}␊ + ␊ + |Heading|Heading |Heading|␊ + |-------|-------|------- |␊ + | Text|Text text |Text|␊ + |Text text |Text text text|Text|␊ + |Text| Text |Text|␊ + ␊ + {MD060:-5} {MD060:-4} {MD060:-3} {MD060:-2}␊ + ␊ + ## Tight / No Edge Pipes␊ + ␊ + Heading|Heading|Heading␊ + -------|-------|-------␊ + Text|Text text|Text␊ + Text text|Text text text|Text␊ + Text|Text|Text␊ + ␊ + {MD060:-4} {MD060:-3} {MD060:-2}␊ + ␊ + Heading|Heading|Heading␊ + -|-|-␊ + Text|Text text|Text␊ + Text text|Text text text|Text␊ + Text|Text|Text␊ + ␊ + {MD060:-5} {MD060:-4} {MD060:-3} {MD060:-2}␊ + ␊ + Heading|Heading |Heading␊ + -------|-------| -------␊ + Text |Text text|Text␊ + Text text|Text text text|Text␊ + Text| Text |Text␊ + ␊ + {MD060:-5} {MD060:-4} {MD060:-3} {MD060:-2}␊ + ␊ + ␊ + `, + } + +## table-column-style-compact.md + +> Snapshot 1 + + { + errors: [ + { + errorContext: null, + errorDetail: 'Table pipe has extra space to the left for style "compact"', + errorRange: [ + 23, + 1, + ], + fixInfo: null, + lineNumber: 5, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has extra space to the left for style "compact"', + errorRange: [ + 11, + 1, + ], + fixInfo: null, + lineNumber: 7, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has extra space to the left for style "compact"', + errorRange: [ + 33, + 1, + ], + fixInfo: null, + lineNumber: 7, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has extra space to the left for style "compact"', + errorRange: [ + 11, + 1, + ], + fixInfo: null, + lineNumber: 8, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has extra space to the left for style "compact"', + errorRange: [ + 33, + 1, + ], + fixInfo: null, + lineNumber: 8, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has extra space to the left for style "compact"', + errorRange: [ + 11, + 1, + ], + fixInfo: null, + lineNumber: 9, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has extra space to the left for style "compact"', + errorRange: [ + 33, + 1, + ], + fixInfo: null, + lineNumber: 9, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has extra space to the left for style "compact"', + errorRange: [ + 23, + 1, + ], + fixInfo: null, + lineNumber: 13, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has extra space to the left for style "compact"', + errorRange: [ + 11, + 1, + ], + fixInfo: null, + lineNumber: 15, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has extra space to the left for style "compact"', + errorRange: [ + 33, + 1, + ], + fixInfo: null, + lineNumber: 15, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has extra space to the left for style "compact"', + errorRange: [ + 12, + 1, + ], + fixInfo: null, + lineNumber: 16, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has extra space to the left for style "compact"', + errorRange: [ + 33, + 1, + ], + fixInfo: null, + lineNumber: 16, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has extra space to the left for style "compact"', + errorRange: [ + 11, + 1, + ], + fixInfo: null, + lineNumber: 17, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has extra space to the left for style "compact"', + errorRange: [ + 32, + 1, + ], + fixInfo: null, + lineNumber: 17, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has extra space to the left for style "compact"', + errorRange: [ + 21, + 1, + ], + fixInfo: null, + lineNumber: 23, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has extra space to the left for style "compact"', + errorRange: [ + 9, + 1, + ], + fixInfo: null, + lineNumber: 25, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has extra space to the left for style "compact"', + errorRange: [ + 9, + 1, + ], + fixInfo: null, + lineNumber: 26, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has extra space to the left for style "compact"', + errorRange: [ + 9, + 1, + ], + fixInfo: null, + lineNumber: 27, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has extra space to the left for style "compact"', + errorRange: [ + 21, + 1, + ], + fixInfo: null, + lineNumber: 31, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has extra space to the left for style "compact"', + errorRange: [ + 9, + 1, + ], + fixInfo: null, + lineNumber: 33, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has extra space to the left for style "compact"', + errorRange: [ + 10, + 1, + ], + fixInfo: null, + lineNumber: 34, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has extra space to the left for style "compact"', + errorRange: [ + 9, + 1, + ], + fixInfo: null, + lineNumber: 35, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has extra space to the left for style "compact"', + errorRange: [ + 22, + 1, + ], + fixInfo: null, + lineNumber: 53, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has extra space to the left for style "compact"', + errorRange: [ + 11, + 1, + ], + fixInfo: null, + lineNumber: 54, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has extra space to the right for style "compact"', + errorRange: [ + 11, + 1, + ], + fixInfo: null, + lineNumber: 54, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has extra space to the left for style "compact"', + errorRange: [ + 22, + 1, + ], + fixInfo: null, + lineNumber: 54, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has extra space to the left for style "compact"', + errorRange: [ + 32, + 1, + ], + fixInfo: null, + lineNumber: 54, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has extra space to the left for style "compact"', + errorRange: [ + 11, + 1, + ], + fixInfo: null, + lineNumber: 55, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has extra space to the left for style "compact"', + errorRange: [ + 31, + 1, + ], + fixInfo: null, + lineNumber: 55, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has extra space to the right for style "compact"', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 56, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has extra space to the right for style "compact"', + errorRange: [ + 9, + 1, + ], + fixInfo: null, + lineNumber: 56, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has extra space to the left for style "compact"', + errorRange: [ + 18, + 1, + ], + fixInfo: null, + lineNumber: 56, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has extra space to the right for style "compact"', + errorRange: [ + 18, + 1, + ], + fixInfo: null, + lineNumber: 56, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has extra space to the left for style "compact"', + errorRange: [ + 29, + 1, + ], + fixInfo: null, + lineNumber: 56, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has extra space to the left for style "compact"', + errorRange: [ + 9, + 1, + ], + fixInfo: null, + lineNumber: 57, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has extra space to the right for style "compact"', + errorRange: [ + 9, + 1, + ], + fixInfo: null, + lineNumber: 57, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has extra space to the right for style "compact"', + errorRange: [ + 17, + 1, + ], + fixInfo: null, + lineNumber: 57, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has extra space to the left for style "compact"', + errorRange: [ + 20, + 1, + ], + fixInfo: null, + lineNumber: 75, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has extra space to the right for style "compact"', + errorRange: [ + 4, + 1, + ], + fixInfo: null, + lineNumber: 76, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has extra space to the left for style "compact"', + errorRange: [ + 12, + 1, + ], + fixInfo: null, + lineNumber: 76, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has extra space to the left for style "compact"', + errorRange: [ + 9, + 1, + ], + fixInfo: null, + lineNumber: 77, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has extra space to the right for style "compact"', + errorRange: [ + 21, + 1, + ], + fixInfo: null, + lineNumber: 77, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has extra space to the left for style "compact"', + errorRange: [ + 7, + 1, + ], + fixInfo: null, + lineNumber: 79, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has extra space to the right for style "compact"', + errorRange: [ + 14, + 1, + ], + fixInfo: null, + lineNumber: 79, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the right for style "compact"', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 85, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the left for style "compact"', + errorRange: [ + 9, + 1, + ], + fixInfo: null, + lineNumber: 85, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the right for style "compact"', + errorRange: [ + 9, + 1, + ], + fixInfo: null, + lineNumber: 85, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the left for style "compact"', + errorRange: [ + 17, + 1, + ], + fixInfo: null, + lineNumber: 85, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the right for style "compact"', + errorRange: [ + 17, + 1, + ], + fixInfo: null, + lineNumber: 85, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the left for style "compact"', + errorRange: [ + 25, + 1, + ], + fixInfo: null, + lineNumber: 85, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the right for style "compact"', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 86, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the left for style "compact"', + errorRange: [ + 9, + 1, + ], + fixInfo: null, + lineNumber: 86, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the right for style "compact"', + errorRange: [ + 9, + 1, + ], + fixInfo: null, + lineNumber: 86, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the left for style "compact"', + errorRange: [ + 17, + 1, + ], + fixInfo: null, + lineNumber: 86, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the right for style "compact"', + errorRange: [ + 17, + 1, + ], + fixInfo: null, + lineNumber: 86, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the left for style "compact"', + errorRange: [ + 25, + 1, + ], + fixInfo: null, + lineNumber: 86, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the right for style "compact"', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 87, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the left for style "compact"', + errorRange: [ + 6, + 1, + ], + fixInfo: null, + lineNumber: 87, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the right for style "compact"', + errorRange: [ + 6, + 1, + ], + fixInfo: null, + lineNumber: 87, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the left for style "compact"', + errorRange: [ + 16, + 1, + ], + fixInfo: null, + lineNumber: 87, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the right for style "compact"', + errorRange: [ + 16, + 1, + ], + fixInfo: null, + lineNumber: 87, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the left for style "compact"', + errorRange: [ + 21, + 1, + ], + fixInfo: null, + lineNumber: 87, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the right for style "compact"', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 88, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the left for style "compact"', + errorRange: [ + 11, + 1, + ], + fixInfo: null, + lineNumber: 88, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the right for style "compact"', + errorRange: [ + 11, + 1, + ], + fixInfo: null, + lineNumber: 88, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the left for style "compact"', + errorRange: [ + 26, + 1, + ], + fixInfo: null, + lineNumber: 88, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the right for style "compact"', + errorRange: [ + 26, + 1, + ], + fixInfo: null, + lineNumber: 88, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the left for style "compact"', + errorRange: [ + 31, + 1, + ], + fixInfo: null, + lineNumber: 88, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the right for style "compact"', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 89, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the left for style "compact"', + errorRange: [ + 6, + 1, + ], + fixInfo: null, + lineNumber: 89, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the right for style "compact"', + errorRange: [ + 6, + 1, + ], + fixInfo: null, + lineNumber: 89, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the left for style "compact"', + errorRange: [ + 11, + 1, + ], + fixInfo: null, + lineNumber: 89, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the right for style "compact"', + errorRange: [ + 11, + 1, + ], + fixInfo: null, + lineNumber: 89, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the left for style "compact"', + errorRange: [ + 16, + 1, + ], + fixInfo: null, + lineNumber: 89, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the right for style "compact"', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 93, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the left for style "compact"', + errorRange: [ + 9, + 1, + ], + fixInfo: null, + lineNumber: 93, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the right for style "compact"', + errorRange: [ + 9, + 1, + ], + fixInfo: null, + lineNumber: 93, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the left for style "compact"', + errorRange: [ + 17, + 1, + ], + fixInfo: null, + lineNumber: 93, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the right for style "compact"', + errorRange: [ + 17, + 1, + ], + fixInfo: null, + lineNumber: 93, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the left for style "compact"', + errorRange: [ + 25, + 1, + ], + fixInfo: null, + lineNumber: 93, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the right for style "compact"', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 94, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the left for style "compact"', + errorRange: [ + 3, + 1, + ], + fixInfo: null, + lineNumber: 94, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the right for style "compact"', + errorRange: [ + 3, + 1, + ], + fixInfo: null, + lineNumber: 94, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the left for style "compact"', + errorRange: [ + 5, + 1, + ], + fixInfo: null, + lineNumber: 94, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the right for style "compact"', + errorRange: [ + 5, + 1, + ], + fixInfo: null, + lineNumber: 94, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the left for style "compact"', + errorRange: [ + 7, + 1, + ], + fixInfo: null, + lineNumber: 94, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the right for style "compact"', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 95, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the left for style "compact"', + errorRange: [ + 6, + 1, + ], + fixInfo: null, + lineNumber: 95, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the right for style "compact"', + errorRange: [ + 6, + 1, + ], + fixInfo: null, + lineNumber: 95, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the left for style "compact"', + errorRange: [ + 16, + 1, + ], + fixInfo: null, + lineNumber: 95, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the right for style "compact"', + errorRange: [ + 16, + 1, + ], + fixInfo: null, + lineNumber: 95, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the left for style "compact"', + errorRange: [ + 21, + 1, + ], + fixInfo: null, + lineNumber: 95, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the right for style "compact"', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 96, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the left for style "compact"', + errorRange: [ + 11, + 1, + ], + fixInfo: null, + lineNumber: 96, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the right for style "compact"', + errorRange: [ + 11, + 1, + ], + fixInfo: null, + lineNumber: 96, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the left for style "compact"', + errorRange: [ + 26, + 1, + ], + fixInfo: null, + lineNumber: 96, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the right for style "compact"', + errorRange: [ + 26, + 1, + ], + fixInfo: null, + lineNumber: 96, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the left for style "compact"', + errorRange: [ + 31, + 1, + ], + fixInfo: null, + lineNumber: 96, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the right for style "compact"', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 97, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the left for style "compact"', + errorRange: [ + 6, + 1, + ], + fixInfo: null, + lineNumber: 97, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the right for style "compact"', + errorRange: [ + 6, + 1, + ], + fixInfo: null, + lineNumber: 97, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the left for style "compact"', + errorRange: [ + 11, + 1, + ], + fixInfo: null, + lineNumber: 97, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the right for style "compact"', + errorRange: [ + 11, + 1, + ], + fixInfo: null, + lineNumber: 97, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the left for style "compact"', + errorRange: [ + 16, + 1, + ], + fixInfo: null, + lineNumber: 97, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the right for style "compact"', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 101, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the left for style "compact"', + errorRange: [ + 9, + 1, + ], + fixInfo: null, + lineNumber: 101, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the right for style "compact"', + errorRange: [ + 9, + 1, + ], + fixInfo: null, + lineNumber: 101, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the right for style "compact"', + errorRange: [ + 18, + 1, + ], + fixInfo: null, + lineNumber: 101, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the left for style "compact"', + errorRange: [ + 26, + 1, + ], + fixInfo: null, + lineNumber: 101, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the right for style "compact"', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 102, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the left for style "compact"', + errorRange: [ + 9, + 1, + ], + fixInfo: null, + lineNumber: 102, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the right for style "compact"', + errorRange: [ + 9, + 1, + ], + fixInfo: null, + lineNumber: 102, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the left for style "compact"', + errorRange: [ + 17, + 1, + ], + fixInfo: null, + lineNumber: 102, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the right for style "compact"', + errorRange: [ + 17, + 1, + ], + fixInfo: null, + lineNumber: 102, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the left for style "compact"', + errorRange: [ + 7, + 1, + ], + fixInfo: null, + lineNumber: 103, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the right for style "compact"', + errorRange: [ + 7, + 1, + ], + fixInfo: null, + lineNumber: 103, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the right for style "compact"', + errorRange: [ + 18, + 1, + ], + fixInfo: null, + lineNumber: 103, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the left for style "compact"', + errorRange: [ + 23, + 1, + ], + fixInfo: null, + lineNumber: 103, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the right for style "compact"', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 104, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the right for style "compact"', + errorRange: [ + 12, + 1, + ], + fixInfo: null, + lineNumber: 104, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the left for style "compact"', + errorRange: [ + 27, + 1, + ], + fixInfo: null, + lineNumber: 104, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the right for style "compact"', + errorRange: [ + 27, + 1, + ], + fixInfo: null, + lineNumber: 104, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the left for style "compact"', + errorRange: [ + 32, + 1, + ], + fixInfo: null, + lineNumber: 104, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the right for style "compact"', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 105, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the left for style "compact"', + errorRange: [ + 6, + 1, + ], + fixInfo: null, + lineNumber: 105, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the right for style "compact"', + errorRange: [ + 13, + 1, + ], + fixInfo: null, + lineNumber: 105, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the left for style "compact"', + errorRange: [ + 18, + 1, + ], + fixInfo: null, + lineNumber: 105, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the left for style "compact"', + errorRange: [ + 8, + 1, + ], + fixInfo: null, + lineNumber: 111, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the right for style "compact"', + errorRange: [ + 8, + 1, + ], + fixInfo: null, + lineNumber: 111, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the left for style "compact"', + errorRange: [ + 16, + 1, + ], + fixInfo: null, + lineNumber: 111, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the right for style "compact"', + errorRange: [ + 16, + 1, + ], + fixInfo: null, + lineNumber: 111, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the left for style "compact"', + errorRange: [ + 8, + 1, + ], + fixInfo: null, + lineNumber: 112, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the right for style "compact"', + errorRange: [ + 8, + 1, + ], + fixInfo: null, + lineNumber: 112, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the left for style "compact"', + errorRange: [ + 16, + 1, + ], + fixInfo: null, + lineNumber: 112, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the right for style "compact"', + errorRange: [ + 16, + 1, + ], + fixInfo: null, + lineNumber: 112, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the left for style "compact"', + errorRange: [ + 5, + 1, + ], + fixInfo: null, + lineNumber: 113, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the right for style "compact"', + errorRange: [ + 5, + 1, + ], + fixInfo: null, + lineNumber: 113, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the left for style "compact"', + errorRange: [ + 15, + 1, + ], + fixInfo: null, + lineNumber: 113, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the right for style "compact"', + errorRange: [ + 15, + 1, + ], + fixInfo: null, + lineNumber: 113, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the left for style "compact"', + errorRange: [ + 10, + 1, + ], + fixInfo: null, + lineNumber: 114, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the right for style "compact"', + errorRange: [ + 10, + 1, + ], + fixInfo: null, + lineNumber: 114, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the left for style "compact"', + errorRange: [ + 25, + 1, + ], + fixInfo: null, + lineNumber: 114, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the right for style "compact"', + errorRange: [ + 25, + 1, + ], + fixInfo: null, + lineNumber: 114, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the left for style "compact"', + errorRange: [ + 5, + 1, + ], + fixInfo: null, + lineNumber: 115, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the right for style "compact"', + errorRange: [ + 5, + 1, + ], + fixInfo: null, + lineNumber: 115, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the left for style "compact"', + errorRange: [ + 10, + 1, + ], + fixInfo: null, + lineNumber: 115, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the right for style "compact"', + errorRange: [ + 10, + 1, + ], + fixInfo: null, + lineNumber: 115, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the left for style "compact"', + errorRange: [ + 8, + 1, + ], + fixInfo: null, + lineNumber: 119, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the right for style "compact"', + errorRange: [ + 8, + 1, + ], + fixInfo: null, + lineNumber: 119, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the left for style "compact"', + errorRange: [ + 16, + 1, + ], + fixInfo: null, + lineNumber: 119, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the right for style "compact"', + errorRange: [ + 16, + 1, + ], + fixInfo: null, + lineNumber: 119, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the left for style "compact"', + errorRange: [ + 2, + 1, + ], + fixInfo: null, + lineNumber: 120, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the right for style "compact"', + errorRange: [ + 2, + 1, + ], + fixInfo: null, + lineNumber: 120, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the left for style "compact"', + errorRange: [ + 4, + 1, + ], + fixInfo: null, + lineNumber: 120, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the right for style "compact"', + errorRange: [ + 4, + 1, + ], + fixInfo: null, + lineNumber: 120, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the left for style "compact"', + errorRange: [ + 5, + 1, + ], + fixInfo: null, + lineNumber: 121, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the right for style "compact"', + errorRange: [ + 5, + 1, + ], + fixInfo: null, + lineNumber: 121, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the left for style "compact"', + errorRange: [ + 15, + 1, + ], + fixInfo: null, + lineNumber: 121, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the right for style "compact"', + errorRange: [ + 15, + 1, + ], + fixInfo: null, + lineNumber: 121, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the left for style "compact"', + errorRange: [ + 10, + 1, + ], + fixInfo: null, + lineNumber: 122, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the right for style "compact"', + errorRange: [ + 10, + 1, + ], + fixInfo: null, + lineNumber: 122, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the left for style "compact"', + errorRange: [ + 25, + 1, + ], + fixInfo: null, + lineNumber: 122, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the right for style "compact"', + errorRange: [ + 25, + 1, + ], + fixInfo: null, + lineNumber: 122, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the left for style "compact"', + errorRange: [ + 5, + 1, + ], + fixInfo: null, + lineNumber: 123, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the right for style "compact"', + errorRange: [ + 5, + 1, + ], + fixInfo: null, + lineNumber: 123, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the left for style "compact"', + errorRange: [ + 10, + 1, + ], + fixInfo: null, + lineNumber: 123, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the right for style "compact"', + errorRange: [ + 10, + 1, + ], + fixInfo: null, + lineNumber: 123, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the left for style "compact"', + errorRange: [ + 8, + 1, + ], + fixInfo: null, + lineNumber: 127, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the right for style "compact"', + errorRange: [ + 8, + 1, + ], + fixInfo: null, + lineNumber: 127, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the right for style "compact"', + errorRange: [ + 17, + 1, + ], + fixInfo: null, + lineNumber: 127, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the left for style "compact"', + errorRange: [ + 8, + 1, + ], + fixInfo: null, + lineNumber: 128, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the right for style "compact"', + errorRange: [ + 8, + 1, + ], + fixInfo: null, + lineNumber: 128, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the left for style "compact"', + errorRange: [ + 16, + 1, + ], + fixInfo: null, + lineNumber: 128, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the right for style "compact"', + errorRange: [ + 6, + 1, + ], + fixInfo: null, + lineNumber: 129, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the left for style "compact"', + errorRange: [ + 16, + 1, + ], + fixInfo: null, + lineNumber: 129, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the right for style "compact"', + errorRange: [ + 16, + 1, + ], + fixInfo: null, + lineNumber: 129, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the left for style "compact"', + errorRange: [ + 10, + 1, + ], + fixInfo: null, + lineNumber: 130, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the right for style "compact"', + errorRange: [ + 10, + 1, + ], + fixInfo: null, + lineNumber: 130, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the left for style "compact"', + errorRange: [ + 25, + 1, + ], + fixInfo: null, + lineNumber: 130, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the right for style "compact"', + errorRange: [ + 25, + 1, + ], + fixInfo: null, + lineNumber: 130, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the left for style "compact"', + errorRange: [ + 5, + 1, + ], + fixInfo: null, + lineNumber: 131, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe is missing space to the right for style "compact"', + errorRange: [ + 12, + 1, + ], + fixInfo: null, + lineNumber: 131, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + ], + fixed: `# Table Column Style - Compact␊ + ␊ + ## Aligned / Edge Pipes␊ + ␊ + | Heading | Heading | Heading |␊ + | ------- | --------- | ------- |␊ + | Text | Text text | Text |␊ + | Text | Text text | Text |␊ + | Text | Text text | Text |␊ + ␊ + {MD060:-6} {MD060:-4} {MD060:-3} {MD060:-2}␊ + ␊ + | Heading | Heading | Heading |␊ + | ------- | -------- | ------- |␊ + | Text | Text text | Text |␊ + | Text | Text text | Text |␊ + | Text | Text tex | Text |␊ + ␊ + {MD060:-6} {MD060:-4} {MD060:-3} {MD060:-2}␊ + ␊ + ## Aligned / No Edge Pipes␊ + ␊ + Heading | Heading | Heading␊ + ------- | --------- | -------␊ + Text | Text text | Text␊ + Text | Text text | Text␊ + Text | Text text | Text␊ + ␊ + {MD060:-6} {MD060:-4} {MD060:-3} {MD060:-2}␊ + ␊ + Heading | Heading | Heading␊ + ------- | -------- | --------␊ + Text | Text text | Text␊ + Text | Text text | Text␊ + Text | Text tex | Text␊ + ␊ + {MD060:-6} {MD060:-4} {MD060:-3} {MD060:-2}␊ + ␊ + ## Compact / Edge Pipes␊ + ␊ + | Heading | Heading | Heading |␊ + | ------- | ------- | ------- |␊ + | Text | Text text | Text |␊ + | Text text | Text text text | Text |␊ + | Text | Text | Text |␊ + ␊ + | Heading | Heading | Heading |␊ + | - | - | - |␊ + | Text | Text text | Text |␊ + | Text text | Text text text | Text |␊ + | Text | Text | Text |␊ + ␊ + | Heading | Heading | Heading |␊ + | - | --- | - |␊ + | Text | Text text | Text |␊ + | Text | Text | Text |␊ + | Text | Text | Text |␊ + ␊ + {MD060:-6} {MD060:-5} {MD060:-4} {MD060:-3} {MD060:-2}␊ + ␊ + ## Compact / No Edge Pipes␊ + ␊ + Heading | Heading | Heading␊ + ------- | ------- | -------␊ + Text | Text text | Text␊ + Text text | Text text text | Text␊ + Text | Text | Text␊ + ␊ + Heading | Heading | Heading␊ + -- | -- | --␊ + Text | Text text | Text␊ + Text text | Text text text | Text␊ + Text | Text | Text␊ + ␊ + Heading | Heading | Heading␊ + -- | --- | --␊ + Text | Text text | Text␊ + Text text | Text text text | Text␊ + Text | Text | Text␊ + ␊ + {MD060:-6} {MD060:-5} {MD060:-4} {MD060:-2}␊ + ␊ + ## Tight / Edge Pipes␊ + ␊ + |Heading|Heading|Heading|␊ + |-------|-------|-------|␊ + |Text|Text text|Text|␊ + |Text text|Text text text|Text|␊ + |Text|Text|Text|␊ + ␊ + {MD060:-6} {MD060:-5} {MD060:-4} {MD060:-3} {MD060:-2}␊ + ␊ + |Heading|Heading|Heading|␊ + |-|-|-|␊ + |Text|Text text|Text|␊ + |Text text|Text text text|Text|␊ + |Text|Text|Text|␊ + ␊ + {MD060:-6} {MD060:-5} {MD060:-4} {MD060:-3} {MD060:-2}␊ + ␊ + |Heading|Heading |Heading|␊ + |-------|-------|------- |␊ + | Text|Text text |Text|␊ + |Text text |Text text text|Text|␊ + |Text| Text |Text|␊ + ␊ + {MD060:-6} {MD060:-5} {MD060:-4} {MD060:-3} {MD060:-2}␊ + ␊ + ## Tight / No Edge Pipes␊ + ␊ + Heading|Heading|Heading␊ + -------|-------|-------␊ + Text|Text text|Text␊ + Text text|Text text text|Text␊ + Text|Text|Text␊ + ␊ + {MD060:-6} {MD060:-5} {MD060:-4} {MD060:-3} {MD060:-2}␊ + ␊ + Heading|Heading|Heading␊ + -|-|-␊ + Text|Text text|Text␊ + Text text|Text text text|Text␊ + Text|Text|Text␊ + ␊ + {MD060:-6} {MD060:-5} {MD060:-4} {MD060:-3} {MD060:-2}␊ + ␊ + Heading|Heading |Heading␊ + -------|-------| -------␊ + Text |Text text|Text␊ + Text text|Text text text|Text␊ + Text| Text |Text␊ + ␊ + {MD060:-6} {MD060:-5} {MD060:-4} {MD060:-3} {MD060:-2}␊ + ␊ + ␊ + `, + } + +## table-column-style-default.md + +> Snapshot 1 + + { + errors: [ + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 22, + 1, + ], + fixInfo: null, + lineNumber: 12, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 32, + 1, + ], + fixInfo: null, + lineNumber: 12, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 12, + 1, + ], + fixInfo: null, + lineNumber: 14, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 24, + 1, + ], + fixInfo: null, + lineNumber: 14, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 22, + 1, + ], + fixInfo: null, + lineNumber: 15, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 32, + 1, + ], + fixInfo: null, + lineNumber: 15, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 20, + 1, + ], + fixInfo: null, + lineNumber: 28, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 10, + 1, + ], + fixInfo: null, + lineNumber: 30, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 22, + 1, + ], + fixInfo: null, + lineNumber: 30, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 20, + 1, + ], + fixInfo: null, + lineNumber: 31, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 23, + 1, + ], + fixInfo: null, + lineNumber: 51, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 31, + 1, + ], + fixInfo: null, + lineNumber: 51, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 9, + 1, + ], + fixInfo: null, + lineNumber: 52, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 18, + 1, + ], + fixInfo: null, + lineNumber: 52, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 29, + 1, + ], + fixInfo: null, + lineNumber: 52, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 9, + 1, + ], + fixInfo: null, + lineNumber: 53, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 17, + 1, + ], + fixInfo: null, + lineNumber: 53, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 31, + 1, + ], + fixInfo: null, + lineNumber: 53, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has extra space to the left for style "compact"', + errorRange: [ + 20, + 1, + ], + fixInfo: null, + lineNumber: 71, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has extra space to the right for style "compact"', + errorRange: [ + 4, + 1, + ], + fixInfo: null, + lineNumber: 72, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has extra space to the left for style "compact"', + errorRange: [ + 12, + 1, + ], + fixInfo: null, + lineNumber: 72, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has extra space to the left for style "compact"', + errorRange: [ + 7, + 1, + ], + fixInfo: null, + lineNumber: 73, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has extra space to the right for style "compact"', + errorRange: [ + 19, + 1, + ], + fixInfo: null, + lineNumber: 73, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has extra space to the left for style "compact"', + errorRange: [ + 7, + 1, + ], + fixInfo: null, + lineNumber: 75, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has extra space to the right for style "compact"', + errorRange: [ + 14, + 1, + ], + fixInfo: null, + lineNumber: 75, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 18, + 1, + ], + fixInfo: null, + lineNumber: 93, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 26, + 1, + ], + fixInfo: null, + lineNumber: 94, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 95, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 18, + 1, + ], + fixInfo: null, + lineNumber: 95, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 12, + 1, + ], + fixInfo: null, + lineNumber: 96, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 6, + 1, + ], + fixInfo: null, + lineNumber: 97, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 13, + 1, + ], + fixInfo: null, + lineNumber: 97, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 17, + 1, + ], + fixInfo: null, + lineNumber: 115, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 16, + 1, + ], + fixInfo: null, + lineNumber: 116, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 6, + 1, + ], + fixInfo: null, + lineNumber: 117, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 5, + 1, + ], + fixInfo: null, + lineNumber: 119, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 12, + 1, + ], + fixInfo: null, + lineNumber: 119, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + ], + fixed: `# Table Column Style - Default␊ + ␊ + ## Aligned / Edge Pipes␊ + ␊ + | Heading | Heading | Heading |␊ + | ------- | --------- | ------- |␊ + | Text | Text text | Text |␊ + | Text | Text text | Text |␊ + | Text | Text text | Text |␊ + ␊ + | Heading | Heading | Heading |␊ + | ------- | -------- | ------- |␊ + | Text | Text text | Text |␊ + | Text | Text text | Text |␊ + | Text | Text tex | Text |␊ + ␊ + {MD060:-5} {MD060:-3} {MD060:-2}␊ + ␊ + ## Aligned / No Edge Pipes␊ + ␊ + Heading | Heading | Heading␊ + ------- | --------- | -------␊ + Text | Text text | Text␊ + Text | Text text | Text␊ + Text | Text text | Text␊ + ␊ + Heading | Heading | Heading␊ + ------- | -------- | --------␊ + Text | Text text | Text␊ + Text | Text text | Text␊ + Text | Text tex | Text␊ + ␊ + {MD060:-5} {MD060:-3} {MD060:-2}␊ + ␊ + ## Compact / Edge Pipes␊ + ␊ + | Heading | Heading | Heading |␊ + | ------- | ------- | ------- |␊ + | Text | Text text | Text |␊ + | Text text | Text text text | Text |␊ + | Text | Text | Text |␊ + ␊ + | Heading | Heading | Heading |␊ + | - | - | - |␊ + | Text | Text text | Text |␊ + | Text text | Text text text | Text |␊ + | Text | Text | Text |␊ + ␊ + | Heading | Heading | Heading |␊ + | - | --- | - |␊ + | Text | Text text | Text |␊ + | Text | Text | Text |␊ + | Text | Text | Text |␊ + ␊ + {MD060:-4} {MD060:-3} {MD060:-2}␊ + ␊ + ## Compact / No Edge Pipes␊ + ␊ + Heading | Heading | Heading␊ + ------- | ------- | -------␊ + Text | Text text | Text␊ + Text text | Text text text | Text␊ + Text | Text | Text␊ + ␊ + Heading | Heading | Heading␊ + -- | -- | --␊ + Text | Text text | Text␊ + Text text | Text text text | Text␊ + Text | Text | Text␊ + ␊ + Heading | Heading | Heading␊ + -- | --- | --␊ + Text | Text text | Text␊ + Text text | Text text text | Text␊ + Text | Text | Text␊ + ␊ + {MD060:-6} {MD060:-5} {MD060:-4} {MD060:-2}␊ + ␊ + ## Tight / Edge Pipes␊ + ␊ + |Heading|Heading|Heading|␊ + |-------|-------|-------|␊ + |Text|Text text|Text|␊ + |Text text|Text text text|Text|␊ + |Text|Text|Text|␊ + ␊ + |Heading|Heading|Heading|␊ + |-|-|-|␊ + |Text|Text text|Text|␊ + |Text text|Text text text|Text|␊ + |Text|Text|Text|␊ + ␊ + |Heading|Heading |Heading|␊ + |-------|-------|------- |␊ + | Text|Text text |Text|␊ + |Text text |Text text text|Text|␊ + |Text| Text |Text|␊ + ␊ + {MD060:-6} {MD060:-5} {MD060:-4} {MD060:-3} {MD060:-2}␊ + ␊ + ## Tight / No Edge Pipes␊ + ␊ + Heading|Heading|Heading␊ + -------|-------|-------␊ + Text|Text text|Text␊ + Text text|Text text text|Text␊ + Text|Text|Text␊ + ␊ + Heading|Heading|Heading␊ + -|-|-␊ + Text|Text text|Text␊ + Text text|Text text text|Text␊ + Text|Text|Text␊ + ␊ + Heading|Heading |Heading␊ + -------|-------| -------␊ + Text |Text text|Text␊ + Text text|Text text text|Text␊ + Text| Text |Text␊ + ␊ + {MD060:-6} {MD060:-5} {MD060:-4} {MD060:-2}␊ + ␊ + ␊ + `, + } + +## table-column-style-emoji.md + +> Snapshot 1 + + { + errors: [ + { + errorContext: null, + errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorRange: [ + 19, + 1, + ], + fixInfo: null, + lineNumber: 9, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has extra space to the left for style "compact"', + errorRange: [ + 13, + 1, + ], + fixInfo: null, + lineNumber: 19, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 9, + 1, + ], + fixInfo: null, + lineNumber: 29, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + ], + fixed: `# Table Column Style - Emoji␊ + ␊ + ## Aligned␊ + ␊ + | Response | Emoji |␊ + | -------- | ----- |␊ + | Yes | ✅ |␊ + | No | ❎ |␊ + | Oops | ❌ |␊ + ␊ + {MD060:-2}␊ + ␊ + ## Compact␊ + ␊ + | Response | Emoji |␊ + | --- | --- |␊ + | Yes | ✅ |␊ + | No | ❎ |␊ + | Oops | ❌ |␊ + ␊ + {MD060:-2}␊ + ␊ + ## Tight␊ + ␊ + |Response|Emoji|␊ + |---|---|␊ + |Yes|✅|␊ + |No|❎|␊ + |Oops|❌ |␊ + ␊ + {MD060:-2}␊ + `, + } + +## table-column-style-tight.md + +> Snapshot 1 + + { + errors: [ + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 5, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 11, + 1, + ], + fixInfo: null, + lineNumber: 5, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 11, + 1, + ], + fixInfo: null, + lineNumber: 5, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 23, + 1, + ], + fixInfo: null, + lineNumber: 5, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 23, + 1, + ], + fixInfo: null, + lineNumber: 5, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 33, + 1, + ], + fixInfo: null, + lineNumber: 5, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 6, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 11, + 1, + ], + fixInfo: null, + lineNumber: 6, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 11, + 1, + ], + fixInfo: null, + lineNumber: 6, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 23, + 1, + ], + fixInfo: null, + lineNumber: 6, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 23, + 1, + ], + fixInfo: null, + lineNumber: 6, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 33, + 1, + ], + fixInfo: null, + lineNumber: 6, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 7, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 11, + 1, + ], + fixInfo: null, + lineNumber: 7, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 11, + 1, + ], + fixInfo: null, + lineNumber: 7, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 23, + 1, + ], + fixInfo: null, + lineNumber: 7, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 23, + 1, + ], + fixInfo: null, + lineNumber: 7, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 33, + 1, + ], + fixInfo: null, + lineNumber: 7, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 8, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 11, + 1, + ], + fixInfo: null, + lineNumber: 8, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 11, + 1, + ], + fixInfo: null, + lineNumber: 8, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 23, + 1, + ], + fixInfo: null, + lineNumber: 8, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 23, + 1, + ], + fixInfo: null, + lineNumber: 8, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 33, + 1, + ], + fixInfo: null, + lineNumber: 8, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 9, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 11, + 1, + ], + fixInfo: null, + lineNumber: 9, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 11, + 1, + ], + fixInfo: null, + lineNumber: 9, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 23, + 1, + ], + fixInfo: null, + lineNumber: 9, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 23, + 1, + ], + fixInfo: null, + lineNumber: 9, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 33, + 1, + ], + fixInfo: null, + lineNumber: 9, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 13, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 11, + 1, + ], + fixInfo: null, + lineNumber: 13, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 11, + 1, + ], + fixInfo: null, + lineNumber: 13, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 23, + 1, + ], + fixInfo: null, + lineNumber: 13, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 23, + 1, + ], + fixInfo: null, + lineNumber: 13, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 33, + 1, + ], + fixInfo: null, + lineNumber: 13, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 14, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 11, + 1, + ], + fixInfo: null, + lineNumber: 14, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 11, + 1, + ], + fixInfo: null, + lineNumber: 14, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 22, + 1, + ], + fixInfo: null, + lineNumber: 14, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 22, + 1, + ], + fixInfo: null, + lineNumber: 14, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 32, + 1, + ], + fixInfo: null, + lineNumber: 14, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 15, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 11, + 1, + ], + fixInfo: null, + lineNumber: 15, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 11, + 1, + ], + fixInfo: null, + lineNumber: 15, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 23, + 1, + ], + fixInfo: null, + lineNumber: 15, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 23, + 1, + ], + fixInfo: null, + lineNumber: 15, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 33, + 1, + ], + fixInfo: null, + lineNumber: 15, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 16, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 12, + 1, + ], + fixInfo: null, + lineNumber: 16, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 12, + 1, + ], + fixInfo: null, + lineNumber: 16, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 24, + 1, + ], + fixInfo: null, + lineNumber: 16, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 24, + 1, + ], + fixInfo: null, + lineNumber: 16, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 33, + 1, + ], + fixInfo: null, + lineNumber: 16, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 17, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 11, + 1, + ], + fixInfo: null, + lineNumber: 17, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 11, + 1, + ], + fixInfo: null, + lineNumber: 17, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 22, + 1, + ], + fixInfo: null, + lineNumber: 17, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 22, + 1, + ], + fixInfo: null, + lineNumber: 17, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 32, + 1, + ], + fixInfo: null, + lineNumber: 17, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 9, + 1, + ], + fixInfo: null, + lineNumber: 23, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 9, + 1, + ], + fixInfo: null, + lineNumber: 23, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 21, + 1, + ], + fixInfo: null, + lineNumber: 23, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 21, + 1, + ], + fixInfo: null, + lineNumber: 23, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 9, + 1, + ], + fixInfo: null, + lineNumber: 24, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 9, + 1, + ], + fixInfo: null, + lineNumber: 24, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 21, + 1, + ], + fixInfo: null, + lineNumber: 24, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 21, + 1, + ], + fixInfo: null, + lineNumber: 24, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 9, + 1, + ], + fixInfo: null, + lineNumber: 25, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 9, + 1, + ], + fixInfo: null, + lineNumber: 25, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 21, + 1, + ], + fixInfo: null, + lineNumber: 25, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 21, + 1, + ], + fixInfo: null, + lineNumber: 25, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 9, + 1, + ], + fixInfo: null, + lineNumber: 26, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 9, + 1, + ], + fixInfo: null, + lineNumber: 26, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 21, + 1, + ], + fixInfo: null, + lineNumber: 26, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 21, + 1, + ], + fixInfo: null, + lineNumber: 26, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 9, + 1, + ], + fixInfo: null, + lineNumber: 27, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 9, + 1, + ], + fixInfo: null, + lineNumber: 27, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 21, + 1, + ], + fixInfo: null, + lineNumber: 27, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 21, + 1, + ], + fixInfo: null, + lineNumber: 27, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 9, + 1, + ], + fixInfo: null, + lineNumber: 31, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 9, + 1, + ], + fixInfo: null, + lineNumber: 31, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 21, + 1, + ], + fixInfo: null, + lineNumber: 31, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 21, + 1, + ], + fixInfo: null, + lineNumber: 31, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 9, + 1, + ], + fixInfo: null, + lineNumber: 32, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 9, + 1, + ], + fixInfo: null, + lineNumber: 32, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 20, + 1, + ], + fixInfo: null, + lineNumber: 32, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 20, + 1, + ], + fixInfo: null, + lineNumber: 32, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 9, + 1, + ], + fixInfo: null, + lineNumber: 33, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 9, + 1, + ], + fixInfo: null, + lineNumber: 33, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 21, + 1, + ], + fixInfo: null, + lineNumber: 33, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 21, + 1, + ], + fixInfo: null, + lineNumber: 33, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 10, + 1, + ], + fixInfo: null, + lineNumber: 34, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 10, + 1, + ], + fixInfo: null, + lineNumber: 34, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 22, + 1, + ], + fixInfo: null, + lineNumber: 34, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 22, + 1, + ], + fixInfo: null, + lineNumber: 34, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 9, + 1, + ], + fixInfo: null, + lineNumber: 35, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 9, + 1, + ], + fixInfo: null, + lineNumber: 35, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 20, + 1, + ], + fixInfo: null, + lineNumber: 35, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 20, + 1, + ], + fixInfo: null, + lineNumber: 35, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 41, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 11, + 1, + ], + fixInfo: null, + lineNumber: 41, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 11, + 1, + ], + fixInfo: null, + lineNumber: 41, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 21, + 1, + ], + fixInfo: null, + lineNumber: 41, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 21, + 1, + ], + fixInfo: null, + lineNumber: 41, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 31, + 1, + ], + fixInfo: null, + lineNumber: 41, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 42, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 11, + 1, + ], + fixInfo: null, + lineNumber: 42, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 11, + 1, + ], + fixInfo: null, + lineNumber: 42, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 21, + 1, + ], + fixInfo: null, + lineNumber: 42, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 21, + 1, + ], + fixInfo: null, + lineNumber: 42, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 31, + 1, + ], + fixInfo: null, + lineNumber: 42, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 43, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 8, + 1, + ], + fixInfo: null, + lineNumber: 43, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 8, + 1, + ], + fixInfo: null, + lineNumber: 43, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 20, + 1, + ], + fixInfo: null, + lineNumber: 43, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 20, + 1, + ], + fixInfo: null, + lineNumber: 43, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 27, + 1, + ], + fixInfo: null, + lineNumber: 43, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 44, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 13, + 1, + ], + fixInfo: null, + lineNumber: 44, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 13, + 1, + ], + fixInfo: null, + lineNumber: 44, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 30, + 1, + ], + fixInfo: null, + lineNumber: 44, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 30, + 1, + ], + fixInfo: null, + lineNumber: 44, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 37, + 1, + ], + fixInfo: null, + lineNumber: 44, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 45, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 8, + 1, + ], + fixInfo: null, + lineNumber: 45, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 8, + 1, + ], + fixInfo: null, + lineNumber: 45, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 15, + 1, + ], + fixInfo: null, + lineNumber: 45, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 15, + 1, + ], + fixInfo: null, + lineNumber: 45, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 22, + 1, + ], + fixInfo: null, + lineNumber: 45, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 49, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 11, + 1, + ], + fixInfo: null, + lineNumber: 49, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 11, + 1, + ], + fixInfo: null, + lineNumber: 49, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 21, + 1, + ], + fixInfo: null, + lineNumber: 49, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 21, + 1, + ], + fixInfo: null, + lineNumber: 49, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 31, + 1, + ], + fixInfo: null, + lineNumber: 49, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 50, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 5, + 1, + ], + fixInfo: null, + lineNumber: 50, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 5, + 1, + ], + fixInfo: null, + lineNumber: 50, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 9, + 1, + ], + fixInfo: null, + lineNumber: 50, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 9, + 1, + ], + fixInfo: null, + lineNumber: 50, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 13, + 1, + ], + fixInfo: null, + lineNumber: 50, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 51, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 8, + 1, + ], + fixInfo: null, + lineNumber: 51, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 8, + 1, + ], + fixInfo: null, + lineNumber: 51, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 20, + 1, + ], + fixInfo: null, + lineNumber: 51, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 20, + 1, + ], + fixInfo: null, + lineNumber: 51, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 27, + 1, + ], + fixInfo: null, + lineNumber: 51, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 52, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 13, + 1, + ], + fixInfo: null, + lineNumber: 52, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 13, + 1, + ], + fixInfo: null, + lineNumber: 52, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 30, + 1, + ], + fixInfo: null, + lineNumber: 52, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 30, + 1, + ], + fixInfo: null, + lineNumber: 52, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 37, + 1, + ], + fixInfo: null, + lineNumber: 52, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 53, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 8, + 1, + ], + fixInfo: null, + lineNumber: 53, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 8, + 1, + ], + fixInfo: null, + lineNumber: 53, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 15, + 1, + ], + fixInfo: null, + lineNumber: 53, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 15, + 1, + ], + fixInfo: null, + lineNumber: 53, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 22, + 1, + ], + fixInfo: null, + lineNumber: 53, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 57, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 11, + 1, + ], + fixInfo: null, + lineNumber: 57, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 11, + 1, + ], + fixInfo: null, + lineNumber: 57, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 22, + 1, + ], + fixInfo: null, + lineNumber: 57, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 22, + 1, + ], + fixInfo: null, + lineNumber: 57, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 32, + 1, + ], + fixInfo: null, + lineNumber: 57, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 58, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 11, + 1, + ], + fixInfo: null, + lineNumber: 58, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 11, + 1, + ], + fixInfo: null, + lineNumber: 58, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 22, + 1, + ], + fixInfo: null, + lineNumber: 58, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 22, + 1, + ], + fixInfo: null, + lineNumber: 58, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 32, + 1, + ], + fixInfo: null, + lineNumber: 58, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 59, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 11, + 1, + ], + fixInfo: null, + lineNumber: 59, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 11, + 1, + ], + fixInfo: null, + lineNumber: 59, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 23, + 1, + ], + fixInfo: null, + lineNumber: 59, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 23, + 1, + ], + fixInfo: null, + lineNumber: 59, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 31, + 1, + ], + fixInfo: null, + lineNumber: 59, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 60, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 9, + 1, + ], + fixInfo: null, + lineNumber: 60, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 9, + 1, + ], + fixInfo: null, + lineNumber: 60, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 18, + 1, + ], + fixInfo: null, + lineNumber: 60, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 18, + 1, + ], + fixInfo: null, + lineNumber: 60, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 29, + 1, + ], + fixInfo: null, + lineNumber: 60, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 61, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 9, + 1, + ], + fixInfo: null, + lineNumber: 61, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 9, + 1, + ], + fixInfo: null, + lineNumber: 61, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 17, + 1, + ], + fixInfo: null, + lineNumber: 61, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 17, + 1, + ], + fixInfo: null, + lineNumber: 61, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 31, + 1, + ], + fixInfo: null, + lineNumber: 61, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 9, + 1, + ], + fixInfo: null, + lineNumber: 67, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 9, + 1, + ], + fixInfo: null, + lineNumber: 67, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 19, + 1, + ], + fixInfo: null, + lineNumber: 67, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 19, + 1, + ], + fixInfo: null, + lineNumber: 67, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 9, + 1, + ], + fixInfo: null, + lineNumber: 68, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 9, + 1, + ], + fixInfo: null, + lineNumber: 68, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 19, + 1, + ], + fixInfo: null, + lineNumber: 68, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 19, + 1, + ], + fixInfo: null, + lineNumber: 68, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 6, + 1, + ], + fixInfo: null, + lineNumber: 69, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 6, + 1, + ], + fixInfo: null, + lineNumber: 69, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 18, + 1, + ], + fixInfo: null, + lineNumber: 69, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 18, + 1, + ], + fixInfo: null, + lineNumber: 69, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 11, + 1, + ], + fixInfo: null, + lineNumber: 70, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 11, + 1, + ], + fixInfo: null, + lineNumber: 70, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 28, + 1, + ], + fixInfo: null, + lineNumber: 70, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 28, + 1, + ], + fixInfo: null, + lineNumber: 70, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 6, + 1, + ], + fixInfo: null, + lineNumber: 71, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 6, + 1, + ], + fixInfo: null, + lineNumber: 71, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 13, + 1, + ], + fixInfo: null, + lineNumber: 71, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 13, + 1, + ], + fixInfo: null, + lineNumber: 71, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 9, + 1, + ], + fixInfo: null, + lineNumber: 75, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 9, + 1, + ], + fixInfo: null, + lineNumber: 75, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 19, + 1, + ], + fixInfo: null, + lineNumber: 75, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 19, + 1, + ], + fixInfo: null, + lineNumber: 75, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 4, + 1, + ], + fixInfo: null, + lineNumber: 76, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 4, + 1, + ], + fixInfo: null, + lineNumber: 76, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 9, + 1, + ], + fixInfo: null, + lineNumber: 76, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 9, + 1, + ], + fixInfo: null, + lineNumber: 76, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 6, + 1, + ], + fixInfo: null, + lineNumber: 77, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 6, + 1, + ], + fixInfo: null, + lineNumber: 77, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 18, + 1, + ], + fixInfo: null, + lineNumber: 77, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 18, + 1, + ], + fixInfo: null, + lineNumber: 77, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 11, + 1, + ], + fixInfo: null, + lineNumber: 78, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 11, + 1, + ], + fixInfo: null, + lineNumber: 78, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 28, + 1, + ], + fixInfo: null, + lineNumber: 78, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 28, + 1, + ], + fixInfo: null, + lineNumber: 78, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 6, + 1, + ], + fixInfo: null, + lineNumber: 79, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 6, + 1, + ], + fixInfo: null, + lineNumber: 79, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 13, + 1, + ], + fixInfo: null, + lineNumber: 79, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 13, + 1, + ], + fixInfo: null, + lineNumber: 79, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 9, + 1, + ], + fixInfo: null, + lineNumber: 83, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 9, + 1, + ], + fixInfo: null, + lineNumber: 83, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 20, + 1, + ], + fixInfo: null, + lineNumber: 83, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 20, + 1, + ], + fixInfo: null, + lineNumber: 83, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 4, + 1, + ], + fixInfo: null, + lineNumber: 84, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 4, + 1, + ], + fixInfo: null, + lineNumber: 84, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 12, + 1, + ], + fixInfo: null, + lineNumber: 84, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 12, + 1, + ], + fixInfo: null, + lineNumber: 84, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 9, + 1, + ], + fixInfo: null, + lineNumber: 85, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 9, + 1, + ], + fixInfo: null, + lineNumber: 85, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 21, + 1, + ], + fixInfo: null, + lineNumber: 85, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 21, + 1, + ], + fixInfo: null, + lineNumber: 85, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 11, + 1, + ], + fixInfo: null, + lineNumber: 86, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 11, + 1, + ], + fixInfo: null, + lineNumber: 86, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 28, + 1, + ], + fixInfo: null, + lineNumber: 86, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 28, + 1, + ], + fixInfo: null, + lineNumber: 86, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 7, + 1, + ], + fixInfo: null, + lineNumber: 87, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 7, + 1, + ], + fixInfo: null, + lineNumber: 87, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 14, + 1, + ], + fixInfo: null, + lineNumber: 87, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 14, + 1, + ], + fixInfo: null, + lineNumber: 87, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 18, + 1, + ], + fixInfo: null, + lineNumber: 105, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 26, + 1, + ], + fixInfo: null, + lineNumber: 106, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 107, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 18, + 1, + ], + fixInfo: null, + lineNumber: 107, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 12, + 1, + ], + fixInfo: null, + lineNumber: 108, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 6, + 1, + ], + fixInfo: null, + lineNumber: 109, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 13, + 1, + ], + fixInfo: null, + lineNumber: 109, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 17, + 1, + ], + fixInfo: null, + lineNumber: 127, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 16, + 1, + ], + fixInfo: null, + lineNumber: 128, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 6, + 1, + ], + fixInfo: null, + lineNumber: 129, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the right for style "tight"', + errorRange: [ + 5, + 1, + ], + fixInfo: null, + lineNumber: 131, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + { + errorContext: null, + errorDetail: 'Table pipe has space to the left for style "tight"', + errorRange: [ + 12, + 1, + ], + fixInfo: null, + lineNumber: 131, + ruleDescription: 'Table column style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md060.md', + ruleNames: [ + 'MD060', + 'table-column-style', + ], + }, + ], + fixed: `# Table Column Style - Tight␊ + ␊ + ## Aligned / Edge Pipes␊ + ␊ + | Heading | Heading | Heading |␊ + | ------- | --------- | ------- |␊ + | Text | Text text | Text |␊ + | Text | Text text | Text |␊ + | Text | Text text | Text |␊ + ␊ + {MD060:-6} {MD060:-5} {MD060:-4} {MD060:-3} {MD060:-2}␊ + ␊ + | Heading | Heading | Heading |␊ + | ------- | -------- | ------- |␊ + | Text | Text text | Text |␊ + | Text | Text text | Text |␊ + | Text | Text tex | Text |␊ + ␊ + {MD060:-6} {MD060:-5} {MD060:-4} {MD060:-3} {MD060:-2}␊ + ␊ + ## Aligned / No Edge Pipes␊ + ␊ + Heading | Heading | Heading␊ + ------- | --------- | -------␊ + Text | Text text | Text␊ + Text | Text text | Text␊ + Text | Text text | Text␊ + ␊ + {MD060:-6} {MD060:-5} {MD060:-4} {MD060:-3} {MD060:-2}␊ + ␊ + Heading | Heading | Heading␊ + ------- | -------- | --------␊ + Text | Text text | Text␊ + Text | Text text | Text␊ + Text | Text tex | Text␊ + ␊ + {MD060:-6} {MD060:-5} {MD060:-4} {MD060:-3} {MD060:-2}␊ + ␊ + ## Compact / Edge Pipes␊ + ␊ + | Heading | Heading | Heading |␊ + | ------- | ------- | ------- |␊ + | Text | Text text | Text |␊ + | Text text | Text text text | Text |␊ + | Text | Text | Text |␊ + ␊ + {MD060:-6} {MD060:-5} {MD060:-4} {MD060:-3} {MD060:-2}␊ + ␊ + | Heading | Heading | Heading |␊ + | - | - | - |␊ + | Text | Text text | Text |␊ + | Text text | Text text text | Text |␊ + | Text | Text | Text |␊ + ␊ + {MD060:-6} {MD060:-5} {MD060:-4} {MD060:-3} {MD060:-2}␊ + ␊ + | Heading | Heading | Heading |␊ + | - | --- | - |␊ + | Text | Text text | Text |␊ + | Text | Text | Text |␊ + | Text | Text | Text |␊ + ␊ + {MD060:-6} {MD060:-5} {MD060:-4} {MD060:-3} {MD060:-2}␊ + ␊ + ## Compact / No Edge Pipes␊ + ␊ + Heading | Heading | Heading␊ + ------- | ------- | -------␊ + Text | Text text | Text␊ + Text text | Text text text | Text␊ + Text | Text | Text␊ + ␊ + {MD060:-6} {MD060:-5} {MD060:-4} {MD060:-3} {MD060:-2}␊ + ␊ + Heading | Heading | Heading␊ + -- | -- | --␊ + Text | Text text | Text␊ + Text text | Text text text | Text␊ + Text | Text | Text␊ + ␊ + {MD060:-6} {MD060:-5} {MD060:-4} {MD060:-3} {MD060:-2}␊ + ␊ + Heading | Heading | Heading␊ + -- | --- | --␊ + Text | Text text | Text␊ + Text text | Text text text | Text␊ + Text | Text | Text␊ + ␊ + {MD060:-6} {MD060:-5} {MD060:-4} {MD060:-3} {MD060:-2}␊ + ␊ + ## Tight / Edge Pipes␊ + ␊ + |Heading|Heading|Heading|␊ + |-------|-------|-------|␊ + |Text|Text text|Text|␊ + |Text text|Text text text|Text|␊ + |Text|Text|Text|␊ + ␊ + |Heading|Heading|Heading|␊ + |-|-|-|␊ + |Text|Text text|Text|␊ + |Text text|Text text text|Text|␊ + |Text|Text|Text|␊ + ␊ + |Heading|Heading |Heading|␊ + |-------|-------|------- |␊ + | Text|Text text |Text|␊ + |Text text |Text text text|Text|␊ + |Text| Text |Text|␊ + ␊ + {MD060:-6} {MD060:-5} {MD060:-4} {MD060:-3} {MD060:-2}␊ + ␊ + ## Tight / No Edge Pipes␊ + ␊ + Heading|Heading|Heading␊ + -------|-------|-------␊ + Text|Text text|Text␊ + Text text|Text text text|Text␊ + Text|Text|Text␊ + ␊ + Heading|Heading|Heading␊ + -|-|-␊ + Text|Text text|Text␊ + Text text|Text text text|Text␊ + Text|Text|Text␊ + ␊ + Heading|Heading |Heading␊ + -------|-------| -------␊ + Text |Text text|Text␊ + Text text|Text text text|Text␊ + Text| Text |Text␊ + ␊ + {MD060:-6} {MD060:-5} {MD060:-4} {MD060:-2}␊ + ␊ + ␊ + `, + } + +## table-column-style-trailing-spaces.md + +> Snapshot 1 + + { + errors: [], + fixed: `# Table Column Style - Trailing Spaces␊ + ␊ + ## Aligned␊ + ␊ + | Heading | Heading | Heading |␊ + | ------- | --------- | ------- |␊ + | Text | Text text | Text |␊ + | Text | Text text | Text | ␊ + | Text | Text text | Text | ␊ + | Text | Text text | Text | ␊ + ␊ + ## Compact␊ + ␊ + | Heading | Heading | Heading |␊ + | --- | --- | --- |␊ + | Text | Text text | Text |␊ + | Text | Text text | Text | ␊ + | Text | Text text | Text | ␊ + | Text | Text text | Text | ␊ + ␊ + ## Tight␊ + ␊ + |Heading|Heading|Heading|␊ + |---|---|---|␊ + |Text|Text text|Text|␊ + |Text|Text text|Text| ␊ + |Text|Text text|Text| ␊ + |Text|Text text|Text| ␊ + ␊ + ␊ + `, + } + ## table-content-with-issues.md > Snapshot 1 @@ -59796,7 +69995,7 @@ Generated by [AVA](https://avajs.dev). deleteCount: 1, editColumn: 21, }, - lineNumber: 148, + lineNumber: 149, ruleDescription: 'Trailing spaces', ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md009.md', ruleNames: [ @@ -59815,7 +70014,7 @@ Generated by [AVA](https://avajs.dev). deleteCount: 1, editColumn: 21, }, - lineNumber: 150, + lineNumber: 151, ruleDescription: 'Trailing spaces', ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md009.md', ruleNames: [ @@ -59834,7 +70033,7 @@ Generated by [AVA](https://avajs.dev). deleteCount: 2, editColumn: 3, }, - lineNumber: 132, + lineNumber: 133, ruleDescription: 'Multiple spaces after blockquote symbol', ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md027.md', ruleNames: [ @@ -59850,7 +70049,7 @@ Generated by [AVA](https://avajs.dev). 1, ], fixInfo: null, - lineNumber: 11, + lineNumber: 12, ruleDescription: 'Table pipe style', ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', ruleNames: [ @@ -59866,7 +70065,7 @@ Generated by [AVA](https://avajs.dev). 1, ], fixInfo: null, - lineNumber: 14, + lineNumber: 15, ruleDescription: 'Table pipe style', ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', ruleNames: [ @@ -59882,7 +70081,7 @@ Generated by [AVA](https://avajs.dev). 1, ], fixInfo: null, - lineNumber: 17, + lineNumber: 18, ruleDescription: 'Table pipe style', ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', ruleNames: [ @@ -59898,7 +70097,7 @@ Generated by [AVA](https://avajs.dev). 1, ], fixInfo: null, - lineNumber: 17, + lineNumber: 18, ruleDescription: 'Table pipe style', ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', ruleNames: [ @@ -59914,7 +70113,7 @@ Generated by [AVA](https://avajs.dev). 1, ], fixInfo: null, - lineNumber: 23, + lineNumber: 24, ruleDescription: 'Table pipe style', ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', ruleNames: [ @@ -59930,7 +70129,7 @@ Generated by [AVA](https://avajs.dev). 1, ], fixInfo: null, - lineNumber: 28, + lineNumber: 29, ruleDescription: 'Table pipe style', ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', ruleNames: [ @@ -59946,7 +70145,7 @@ Generated by [AVA](https://avajs.dev). 1, ], fixInfo: null, - lineNumber: 33, + lineNumber: 34, ruleDescription: 'Table pipe style', ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', ruleNames: [ @@ -59962,7 +70161,7 @@ Generated by [AVA](https://avajs.dev). 1, ], fixInfo: null, - lineNumber: 33, + lineNumber: 34, ruleDescription: 'Table pipe style', ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', ruleNames: [ @@ -59978,7 +70177,7 @@ Generated by [AVA](https://avajs.dev). 1, ], fixInfo: null, - lineNumber: 39, + lineNumber: 40, ruleDescription: 'Table pipe style', ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', ruleNames: [ @@ -59994,38 +70193,6 @@ Generated by [AVA](https://avajs.dev). 1, ], fixInfo: null, - lineNumber: 39, - ruleDescription: 'Table pipe style', - ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', - ruleNames: [ - 'MD055', - 'table-pipe-style', - ], - }, - { - errorContext: null, - errorDetail: 'Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe', - errorRange: [ - 1, - 1, - ], - fixInfo: null, - lineNumber: 40, - ruleDescription: 'Table pipe style', - ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', - ruleNames: [ - 'MD055', - 'table-pipe-style', - ], - }, - { - errorContext: null, - errorDetail: 'Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe', - errorRange: [ - 18, - 1, - ], - fixInfo: null, lineNumber: 40, ruleDescription: 'Table pipe style', ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', @@ -60038,7 +70205,7 @@ Generated by [AVA](https://avajs.dev). errorContext: null, errorDetail: 'Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe', errorRange: [ - 2, + 1, 1, ], fixInfo: null, @@ -60054,7 +70221,7 @@ Generated by [AVA](https://avajs.dev). errorContext: null, errorDetail: 'Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe', errorRange: [ - 15, + 18, 1, ], fixInfo: null, @@ -60074,71 +70241,7 @@ Generated by [AVA](https://avajs.dev). 1, ], fixInfo: null, - lineNumber: 45, - ruleDescription: 'Table pipe style', - ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', - ruleNames: [ - 'MD055', - 'table-pipe-style', - ], - }, - { - errorContext: null, - errorDetail: 'Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe', - errorRange: [ - 17, - 1, - ], - fixInfo: null, - lineNumber: 45, - ruleDescription: 'Table pipe style', - ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', - ruleNames: [ - 'MD055', - 'table-pipe-style', - ], - }, - { - errorContext: null, - errorDetail: 'Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe', - errorRange: [ - 1, - 1, - ], - fixInfo: null, - lineNumber: 46, - ruleDescription: 'Table pipe style', - ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', - ruleNames: [ - 'MD055', - 'table-pipe-style', - ], - }, - { - errorContext: null, - errorDetail: 'Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe', - errorRange: [ - 18, - 1, - ], - fixInfo: null, - lineNumber: 46, - ruleDescription: 'Table pipe style', - ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', - ruleNames: [ - 'MD055', - 'table-pipe-style', - ], - }, - { - errorContext: null, - errorDetail: 'Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe', - errorRange: [ - 2, - 1, - ], - fixInfo: null, - lineNumber: 47, + lineNumber: 42, ruleDescription: 'Table pipe style', ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', ruleNames: [ @@ -60154,6 +70257,70 @@ Generated by [AVA](https://avajs.dev). 1, ], fixInfo: null, + lineNumber: 42, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe', + errorRange: [ + 2, + 1, + ], + fixInfo: null, + lineNumber: 46, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe', + errorRange: [ + 17, + 1, + ], + fixInfo: null, + lineNumber: 46, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe', + errorRange: [ + 1, + 1, + ], + fixInfo: null, + lineNumber: 47, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe', + errorRange: [ + 18, + 1, + ], + fixInfo: null, lineNumber: 47, ruleDescription: 'Table pipe style', ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', @@ -60166,11 +70333,11 @@ Generated by [AVA](https://avajs.dev). errorContext: null, errorDetail: 'Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe', errorRange: [ - 3, + 2, 1, ], fixInfo: null, - lineNumber: 53, + lineNumber: 48, ruleDescription: 'Table pipe style', ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', ruleNames: [ @@ -60182,11 +70349,11 @@ Generated by [AVA](https://avajs.dev). errorContext: null, errorDetail: 'Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe', errorRange: [ - 16, + 15, 1, ], fixInfo: null, - lineNumber: 53, + lineNumber: 48, ruleDescription: 'Table pipe style', ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', ruleNames: [ @@ -60202,7 +70369,7 @@ Generated by [AVA](https://avajs.dev). 1, ], fixInfo: null, - lineNumber: 57, + lineNumber: 54, ruleDescription: 'Table pipe style', ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', ruleNames: [ @@ -60218,7 +70385,7 @@ Generated by [AVA](https://avajs.dev). 1, ], fixInfo: null, - lineNumber: 57, + lineNumber: 54, ruleDescription: 'Table pipe style', ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', ruleNames: [ @@ -60234,7 +70401,7 @@ Generated by [AVA](https://avajs.dev). 1, ], fixInfo: null, - lineNumber: 64, + lineNumber: 58, ruleDescription: 'Table pipe style', ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', ruleNames: [ @@ -60250,7 +70417,7 @@ Generated by [AVA](https://avajs.dev). 1, ], fixInfo: null, - lineNumber: 64, + lineNumber: 58, ruleDescription: 'Table pipe style', ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', ruleNames: [ @@ -60266,7 +70433,7 @@ Generated by [AVA](https://avajs.dev). 1, ], fixInfo: null, - lineNumber: 71, + lineNumber: 65, ruleDescription: 'Table pipe style', ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', ruleNames: [ @@ -60282,7 +70449,39 @@ Generated by [AVA](https://avajs.dev). 1, ], fixInfo: null, - lineNumber: 71, + lineNumber: 65, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe', + errorRange: [ + 3, + 1, + ], + fixInfo: null, + lineNumber: 72, + ruleDescription: 'Table pipe style', + ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', + ruleNames: [ + 'MD055', + 'table-pipe-style', + ], + }, + { + errorContext: null, + errorDetail: 'Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe', + errorRange: [ + 16, + 1, + ], + fixInfo: null, + lineNumber: 72, ruleDescription: 'Table pipe style', ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', ruleNames: [ @@ -60298,7 +70497,7 @@ Generated by [AVA](https://avajs.dev). 1, ], fixInfo: null, - lineNumber: 77, + lineNumber: 78, ruleDescription: 'Table pipe style', ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', ruleNames: [ @@ -60314,7 +70513,7 @@ Generated by [AVA](https://avajs.dev). 1, ], fixInfo: null, - lineNumber: 81, + lineNumber: 82, ruleDescription: 'Table pipe style', ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', ruleNames: [ @@ -60330,7 +70529,7 @@ Generated by [AVA](https://avajs.dev). 1, ], fixInfo: null, - lineNumber: 88, + lineNumber: 89, ruleDescription: 'Table pipe style', ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', ruleNames: [ @@ -60346,7 +70545,7 @@ Generated by [AVA](https://avajs.dev). 1, ], fixInfo: null, - lineNumber: 95, + lineNumber: 96, ruleDescription: 'Table pipe style', ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', ruleNames: [ @@ -60362,7 +70561,7 @@ Generated by [AVA](https://avajs.dev). 1, ], fixInfo: null, - lineNumber: 101, + lineNumber: 102, ruleDescription: 'Table pipe style', ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', ruleNames: [ @@ -60378,7 +70577,7 @@ Generated by [AVA](https://avajs.dev). 1, ], fixInfo: null, - lineNumber: 105, + lineNumber: 106, ruleDescription: 'Table pipe style', ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', ruleNames: [ @@ -60394,7 +70593,7 @@ Generated by [AVA](https://avajs.dev). 1, ], fixInfo: null, - lineNumber: 112, + lineNumber: 113, ruleDescription: 'Table pipe style', ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', ruleNames: [ @@ -60410,7 +70609,7 @@ Generated by [AVA](https://avajs.dev). 1, ], fixInfo: null, - lineNumber: 119, + lineNumber: 120, ruleDescription: 'Table pipe style', ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', ruleNames: [ @@ -60426,7 +70625,7 @@ Generated by [AVA](https://avajs.dev). 1, ], fixInfo: null, - lineNumber: 126, + lineNumber: 127, ruleDescription: 'Table pipe style', ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', ruleNames: [ @@ -60442,7 +70641,7 @@ Generated by [AVA](https://avajs.dev). 1, ], fixInfo: null, - lineNumber: 126, + lineNumber: 127, ruleDescription: 'Table pipe style', ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', ruleNames: [ @@ -60458,7 +70657,7 @@ Generated by [AVA](https://avajs.dev). 1, ], fixInfo: null, - lineNumber: 130, + lineNumber: 131, ruleDescription: 'Table pipe style', ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', ruleNames: [ @@ -60474,7 +70673,7 @@ Generated by [AVA](https://avajs.dev). 1, ], fixInfo: null, - lineNumber: 132, + lineNumber: 133, ruleDescription: 'Table pipe style', ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md055.md', ruleNames: [ @@ -60490,7 +70689,7 @@ Generated by [AVA](https://avajs.dev). 1, ], fixInfo: null, - lineNumber: 126, + lineNumber: 127, ruleDescription: 'Table column count', ruleInformation: 'https://github.com/DavidAnson/markdownlint/blob/v0.0.0/doc/md056.md', ruleNames: [ @@ -60502,6 +70701,7 @@ Generated by [AVA](https://avajs.dev). fixed: `# Table Pipe Style␊ ␊ diff --git a/test/table-column-style-compact.md b/test/table-column-style-compact.md new file mode 100644 index 00000000..071a6f32 --- /dev/null +++ b/test/table-column-style-compact.md @@ -0,0 +1,140 @@ +# Table Column Style - Compact + +## Aligned / Edge Pipes + +| Heading | Heading | Heading | +| ------- | --------- | ------- | +| Text | Text text | Text | +| Text | Text text | Text | +| Text | Text text | Text | + +{MD060:-6} {MD060:-4} {MD060:-3} {MD060:-2} + +| Heading | Heading | Heading | +| ------- | -------- | ------- | +| Text | Text text | Text | +| Text | Text text | Text | +| Text | Text tex | Text | + +{MD060:-6} {MD060:-4} {MD060:-3} {MD060:-2} + +## Aligned / No Edge Pipes + +Heading | Heading | Heading +------- | --------- | ------- +Text | Text text | Text +Text | Text text | Text +Text | Text text | Text + +{MD060:-6} {MD060:-4} {MD060:-3} {MD060:-2} + +Heading | Heading | Heading +------- | -------- | -------- +Text | Text text | Text +Text | Text text | Text +Text | Text tex | Text + +{MD060:-6} {MD060:-4} {MD060:-3} {MD060:-2} + +## Compact / Edge Pipes + +| Heading | Heading | Heading | +| ------- | ------- | ------- | +| Text | Text text | Text | +| Text text | Text text text | Text | +| Text | Text | Text | + +| Heading | Heading | Heading | +| - | - | - | +| Text | Text text | Text | +| Text text | Text text text | Text | +| Text | Text | Text | + +| Heading | Heading | Heading | +| - | --- | - | +| Text | Text text | Text | +| Text | Text | Text | +| Text | Text | Text | + +{MD060:-6} {MD060:-5} {MD060:-4} {MD060:-3} {MD060:-2} + +## Compact / No Edge Pipes + +Heading | Heading | Heading +------- | ------- | ------- +Text | Text text | Text +Text text | Text text text | Text +Text | Text | Text + +Heading | Heading | Heading +-- | -- | -- +Text | Text text | Text +Text text | Text text text | Text +Text | Text | Text + +Heading | Heading | Heading +-- | --- | -- +Text | Text text | Text +Text text | Text text text | Text +Text | Text | Text + +{MD060:-6} {MD060:-5} {MD060:-4} {MD060:-2} + +## Tight / Edge Pipes + +|Heading|Heading|Heading| +|-------|-------|-------| +|Text|Text text|Text| +|Text text|Text text text|Text| +|Text|Text|Text| + +{MD060:-6} {MD060:-5} {MD060:-4} {MD060:-3} {MD060:-2} + +|Heading|Heading|Heading| +|-|-|-| +|Text|Text text|Text| +|Text text|Text text text|Text| +|Text|Text|Text| + +{MD060:-6} {MD060:-5} {MD060:-4} {MD060:-3} {MD060:-2} + +|Heading|Heading |Heading| +|-------|-------|------- | +| Text|Text text |Text| +|Text text |Text text text|Text| +|Text| Text |Text| + +{MD060:-6} {MD060:-5} {MD060:-4} {MD060:-3} {MD060:-2} + +## Tight / No Edge Pipes + +Heading|Heading|Heading +-------|-------|------- +Text|Text text|Text +Text text|Text text text|Text +Text|Text|Text + +{MD060:-6} {MD060:-5} {MD060:-4} {MD060:-3} {MD060:-2} + +Heading|Heading|Heading +-|-|- +Text|Text text|Text +Text text|Text text text|Text +Text|Text|Text + +{MD060:-6} {MD060:-5} {MD060:-4} {MD060:-3} {MD060:-2} + +Heading|Heading |Heading +-------|-------| ------- +Text |Text text|Text +Text text|Text text text|Text +Text| Text |Text + +{MD060:-6} {MD060:-5} {MD060:-4} {MD060:-3} {MD060:-2} + + diff --git a/test/table-column-style-default.md b/test/table-column-style-default.md new file mode 100644 index 00000000..1034f04d --- /dev/null +++ b/test/table-column-style-default.md @@ -0,0 +1,125 @@ +# Table Column Style - Default + +## Aligned / Edge Pipes + +| Heading | Heading | Heading | +| ------- | --------- | ------- | +| Text | Text text | Text | +| Text | Text text | Text | +| Text | Text text | Text | + +| Heading | Heading | Heading | +| ------- | -------- | ------- | +| Text | Text text | Text | +| Text | Text text | Text | +| Text | Text tex | Text | + +{MD060:-5} {MD060:-3} {MD060:-2} + +## Aligned / No Edge Pipes + +Heading | Heading | Heading +------- | --------- | ------- +Text | Text text | Text +Text | Text text | Text +Text | Text text | Text + +Heading | Heading | Heading +------- | -------- | -------- +Text | Text text | Text +Text | Text text | Text +Text | Text tex | Text + +{MD060:-5} {MD060:-3} {MD060:-2} + +## Compact / Edge Pipes + +| Heading | Heading | Heading | +| ------- | ------- | ------- | +| Text | Text text | Text | +| Text text | Text text text | Text | +| Text | Text | Text | + +| Heading | Heading | Heading | +| - | - | - | +| Text | Text text | Text | +| Text text | Text text text | Text | +| Text | Text | Text | + +| Heading | Heading | Heading | +| - | --- | - | +| Text | Text text | Text | +| Text | Text | Text | +| Text | Text | Text | + +{MD060:-4} {MD060:-3} {MD060:-2} + +## Compact / No Edge Pipes + +Heading | Heading | Heading +------- | ------- | ------- +Text | Text text | Text +Text text | Text text text | Text +Text | Text | Text + +Heading | Heading | Heading +-- | -- | -- +Text | Text text | Text +Text text | Text text text | Text +Text | Text | Text + +Heading | Heading | Heading +-- | --- | -- +Text | Text text | Text +Text text | Text text text | Text +Text | Text | Text + +{MD060:-6} {MD060:-5} {MD060:-4} {MD060:-2} + +## Tight / Edge Pipes + +|Heading|Heading|Heading| +|-------|-------|-------| +|Text|Text text|Text| +|Text text|Text text text|Text| +|Text|Text|Text| + +|Heading|Heading|Heading| +|-|-|-| +|Text|Text text|Text| +|Text text|Text text text|Text| +|Text|Text|Text| + +|Heading|Heading |Heading| +|-------|-------|------- | +| Text|Text text |Text| +|Text text |Text text text|Text| +|Text| Text |Text| + +{MD060:-6} {MD060:-5} {MD060:-4} {MD060:-3} {MD060:-2} + +## Tight / No Edge Pipes + +Heading|Heading|Heading +-------|-------|------- +Text|Text text|Text +Text text|Text text text|Text +Text|Text|Text + +Heading|Heading|Heading +-|-|- +Text|Text text|Text +Text text|Text text text|Text +Text|Text|Text + +Heading|Heading |Heading +-------|-------| ------- +Text |Text text|Text +Text text|Text text text|Text +Text| Text |Text + +{MD060:-6} {MD060:-5} {MD060:-4} {MD060:-2} + + diff --git a/test/table-column-style-emoji.md b/test/table-column-style-emoji.md new file mode 100644 index 00000000..58120159 --- /dev/null +++ b/test/table-column-style-emoji.md @@ -0,0 +1,31 @@ +# Table Column Style - Emoji + +## Aligned + +| Response | Emoji | +| -------- | ----- | +| Yes | ✅ | +| No | ❎ | +| Oops | ❌ | + +{MD060:-2} + +## Compact + +| Response | Emoji | +| --- | --- | +| Yes | ✅ | +| No | ❎ | +| Oops | ❌ | + +{MD060:-2} + +## Tight + +|Response|Emoji| +|---|---| +|Yes|✅| +|No|❎| +|Oops|❌ | + +{MD060:-2} diff --git a/test/table-column-style-tight.md b/test/table-column-style-tight.md new file mode 100644 index 00000000..85e952d1 --- /dev/null +++ b/test/table-column-style-tight.md @@ -0,0 +1,140 @@ +# Table Column Style - Tight + +## Aligned / Edge Pipes + +| Heading | Heading | Heading | +| ------- | --------- | ------- | +| Text | Text text | Text | +| Text | Text text | Text | +| Text | Text text | Text | + +{MD060:-6} {MD060:-5} {MD060:-4} {MD060:-3} {MD060:-2} + +| Heading | Heading | Heading | +| ------- | -------- | ------- | +| Text | Text text | Text | +| Text | Text text | Text | +| Text | Text tex | Text | + +{MD060:-6} {MD060:-5} {MD060:-4} {MD060:-3} {MD060:-2} + +## Aligned / No Edge Pipes + +Heading | Heading | Heading +------- | --------- | ------- +Text | Text text | Text +Text | Text text | Text +Text | Text text | Text + +{MD060:-6} {MD060:-5} {MD060:-4} {MD060:-3} {MD060:-2} + +Heading | Heading | Heading +------- | -------- | -------- +Text | Text text | Text +Text | Text text | Text +Text | Text tex | Text + +{MD060:-6} {MD060:-5} {MD060:-4} {MD060:-3} {MD060:-2} + +## Compact / Edge Pipes + +| Heading | Heading | Heading | +| ------- | ------- | ------- | +| Text | Text text | Text | +| Text text | Text text text | Text | +| Text | Text | Text | + +{MD060:-6} {MD060:-5} {MD060:-4} {MD060:-3} {MD060:-2} + +| Heading | Heading | Heading | +| - | - | - | +| Text | Text text | Text | +| Text text | Text text text | Text | +| Text | Text | Text | + +{MD060:-6} {MD060:-5} {MD060:-4} {MD060:-3} {MD060:-2} + +| Heading | Heading | Heading | +| - | --- | - | +| Text | Text text | Text | +| Text | Text | Text | +| Text | Text | Text | + +{MD060:-6} {MD060:-5} {MD060:-4} {MD060:-3} {MD060:-2} + +## Compact / No Edge Pipes + +Heading | Heading | Heading +------- | ------- | ------- +Text | Text text | Text +Text text | Text text text | Text +Text | Text | Text + +{MD060:-6} {MD060:-5} {MD060:-4} {MD060:-3} {MD060:-2} + +Heading | Heading | Heading +-- | -- | -- +Text | Text text | Text +Text text | Text text text | Text +Text | Text | Text + +{MD060:-6} {MD060:-5} {MD060:-4} {MD060:-3} {MD060:-2} + +Heading | Heading | Heading +-- | --- | -- +Text | Text text | Text +Text text | Text text text | Text +Text | Text | Text + +{MD060:-6} {MD060:-5} {MD060:-4} {MD060:-3} {MD060:-2} + +## Tight / Edge Pipes + +|Heading|Heading|Heading| +|-------|-------|-------| +|Text|Text text|Text| +|Text text|Text text text|Text| +|Text|Text|Text| + +|Heading|Heading|Heading| +|-|-|-| +|Text|Text text|Text| +|Text text|Text text text|Text| +|Text|Text|Text| + +|Heading|Heading |Heading| +|-------|-------|------- | +| Text|Text text |Text| +|Text text |Text text text|Text| +|Text| Text |Text| + +{MD060:-6} {MD060:-5} {MD060:-4} {MD060:-3} {MD060:-2} + +## Tight / No Edge Pipes + +Heading|Heading|Heading +-------|-------|------- +Text|Text text|Text +Text text|Text text text|Text +Text|Text|Text + +Heading|Heading|Heading +-|-|- +Text|Text text|Text +Text text|Text text text|Text +Text|Text|Text + +Heading|Heading |Heading +-------|-------| ------- +Text |Text text|Text +Text text|Text text text|Text +Text| Text |Text + +{MD060:-6} {MD060:-5} {MD060:-4} {MD060:-2} + + diff --git a/test/table-column-style-trailing-spaces.md b/test/table-column-style-trailing-spaces.md new file mode 100644 index 00000000..fe72c2e8 --- /dev/null +++ b/test/table-column-style-trailing-spaces.md @@ -0,0 +1,35 @@ +# Table Column Style - Trailing Spaces + +## Aligned + +| Heading | Heading | Heading | +| ------- | --------- | ------- | +| Text | Text text | Text | +| Text | Text text | Text | +| Text | Text text | Text | +| Text | Text text | Text | + +## Compact + +| Heading | Heading | Heading | +| --- | --- | --- | +| Text | Text text | Text | +| Text | Text text | Text | +| Text | Text text | Text | +| Text | Text text | Text | + +## Tight + +|Heading|Heading|Heading| +|---|---|---| +|Text|Text text|Text| +|Text|Text text|Text| +|Text|Text text|Text| +|Text|Text text|Text| + + diff --git a/test/table-pipe-style.md b/test/table-pipe-style.md index e419549e..00ce1f48 100644 --- a/test/table-pipe-style.md +++ b/test/table-pipe-style.md @@ -1,6 +1,7 @@ # Table Pipe Style