diff --git a/lib/md060.mjs b/lib/md060.mjs index 6c32c397..07cc5a57 100644 --- a/lib/md060.mjs +++ b/lib/md060.mjs @@ -60,13 +60,13 @@ function getTableDividerColumns(lines, row) { function checkStyleAligned(lines, rows, detail) { /** @type {RuleOnErrorInfo[]} */ const errorInfos = []; - const headingRow = rows[0]; - const headingDividerColumns = getTableDividerColumns(lines, headingRow); + const headerRow = rows[0]; + const headerDividerColumns = getTableDividerColumns(lines, headerRow); for (const row of rows.slice(1)) { - const remainingHeadingDividerColumns = new Set(headingDividerColumns.map((column) => column.effective)); + const remainingHeaderDividerColumns = new Set(headerDividerColumns.map((column) => column.effective)); const rowDividerColumns = getTableDividerColumns(lines, row); for (const dividerColumn of rowDividerColumns) { - if ((remainingHeadingDividerColumns.size > 0) && !remainingHeadingDividerColumns.delete(dividerColumn.effective)) { + if ((remainingHeaderDividerColumns.size > 0) && !remainingHeaderDividerColumns.delete(dividerColumn.effective)) { addError(errorInfos, row.startLine, dividerColumn.actual, detail); } } @@ -97,7 +97,7 @@ export default { /** @type {RuleOnErrorInfo[]} */ const errorsIfAligned = []; if (styleAlignedAllowed) { - errorsIfAligned.push(...checkStyleAligned(lines, rows, "Table pipe does not align with heading for style \"aligned\"")); + errorsIfAligned.push(...checkStyleAligned(lines, rows, "Table pipe does not align with header for style \"aligned\"")); } // Determine errors for styles "compact" and "tight" @@ -110,7 +110,7 @@ export default { !(styleAlignedAllowed && (errorsIfAligned.length === 0)) ) { if (alignedDelimiter) { - const errorInfos = checkStyleAligned(lines, rows.slice(0, 2), "Table pipe does not align with heading for option \"aligned_delimiter\""); + const errorInfos = checkStyleAligned(lines, rows.slice(0, 2), "Table pipe does not align with header for option \"aligned_delimiter\""); errorsIfCompact.push(...errorInfos); errorsIfTight.push(...errorInfos); } diff --git a/test/snapshots/markdownlint-test-repos-small.mjs.md b/test/snapshots/markdownlint-test-repos-small.mjs.md index c6faaaae..d04c412a 100644 --- a/test/snapshots/markdownlint-test-repos-small.mjs.md +++ b/test/snapshots/markdownlint-test-repos-small.mjs.md @@ -240,8 +240,8 @@ Generated by [AVA](https://avajs.dev). test-repos/apache-airflow/dev/MANUALLY_BUILDING_IMAGES.md:76:32 error MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊ test-repos/apache-airflow/dev/MANUALLY_GENERATING_IMAGE_CACHE_AND_CONSTRAINTS.md:114:32 error MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊ test-repos/apache-airflow/dev/PROJECT_GUIDELINES.md:42:3 error MD059/descriptive-link-text Link text should be descriptive [Context: "[Link]"]␊ - test-repos/apache-airflow/generated/PYPI_README.md:30:532 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/apache-airflow/generated/PYPI_README.md:37:173 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/apache-airflow/generated/PYPI_README.md:30:532 error MD060/table-column-style Table column style [Table pipe does not align with header for style "aligned"]␊ + test-repos/apache-airflow/generated/PYPI_README.md:37:173 error MD060/table-column-style Table column style [Table pipe does not align with header for style "aligned"]␊ test-repos/apache-airflow/generated/README.md:23:43 error MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊ test-repos/apache-airflow/providers/amazon/tests/system/amazon/CONTRIBUTING.md:30 error MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "Scope"]␊ test-repos/apache-airflow/providers/amazon/tests/system/amazon/CONTRIBUTING.md:38 error MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "Tenants"]␊ @@ -251,8 +251,8 @@ Generated by [AVA](https://avajs.dev). test-repos/apache-airflow/providers/common/sql/src/airflow/providers/common/sql/README_API.md:71 error MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "External usage, tracking API c..."]␊ test-repos/apache-airflow/providers/common/sql/src/airflow/providers/common/sql/README_API.md:81 error MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "Possible future work"]␊ test-repos/apache-airflow/providers/google/tests/system/google/README.md:77:4 error MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊ - test-repos/apache-airflow/README.md:28:532 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/apache-airflow/README.md:35:173 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/apache-airflow/README.md:28:532 error MD060/table-column-style Table column style [Table pipe does not align with header for style "aligned"]␊ + test-repos/apache-airflow/README.md:35:173 error MD060/table-column-style Table column style [Table pipe does not align with header for style "aligned"]␊ test-repos/apache-airflow/scripts/in_container/quarantine_issue_header.md:29 error MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "Status update"]␊ test-repos/apache-airflow/scripts/in_container/quarantine_issue_header.md:33 error MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "List of Quarantined issues"]` @@ -260,8 +260,8 @@ Generated by [AVA](https://avajs.dev). > Expected linting violations - `test-repos/electron-electron/docs/api/structures/notification-action.md:10:163 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/electron-electron/docs/api/structures/notification-action.md:10:431 error 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:163 error MD060/table-column-style Table column style [Table pipe does not align with header for style "aligned"]␊ + test-repos/electron-electron/docs/api/structures/notification-action.md:10:431 error MD060/table-column-style Table column style [Table pipe does not align with header for style "aligned"]␊ test-repos/electron-electron/docs/breaking-changes.md:2356:1 error 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:2356:12 error 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:2356:12 error MD060/table-column-style Table column style [Table pipe is missing space to the right for style "compact"]␊ @@ -282,30 +282,30 @@ Generated by [AVA](https://avajs.dev). test-repos/electron-electron/docs/tutorial/electron-timelines.md:23:10 error MD060/table-column-style Table column style [Table pipe has extra space to the right for style "compact"]␊ test-repos/electron-electron/docs/tutorial/electron-timelines.md:24:10 error 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:25:10 error MD060/table-column-style Table column style [Table pipe has extra space to the right for style "compact"]␊ - test-repos/electron-electron/docs/tutorial/esm.md:32:208 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/electron-electron/docs/tutorial/esm.md:33:182 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/electron-electron/docs/tutorial/esm.md:34:45 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/electron-electron/docs/tutorial/esm.md:34:56 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/electron-electron/docs/tutorial/esm.md:34:66 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/electron-electron/docs/tutorial/esm.md:34:368 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/electron-electron/docs/tutorial/esm.md:35:49 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/electron-electron/docs/tutorial/esm.md:35:60 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/electron-electron/docs/tutorial/esm.md:35:70 error 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:369 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/electron-electron/docs/tutorial/examples.md:30:27 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/electron-electron/docs/tutorial/examples.md:30:145 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/electron-electron/docs/tutorial/examples.md:31:27 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/electron-electron/docs/tutorial/examples.md:31:145 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/electron-electron/docs/tutorial/examples.md:32:27 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/electron-electron/docs/tutorial/examples.md:32:145 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/electron-electron/docs/tutorial/examples.md:33:27 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/electron-electron/docs/tutorial/examples.md:33:145 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/electron-electron/docs/tutorial/examples.md:34:27 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/electron-electron/docs/tutorial/examples.md:34:145 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/electron-electron/docs/tutorial/examples.md:35:27 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/electron-electron/docs/tutorial/examples.md:35:145 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/electron-electron/docs/tutorial/examples.md:36:27 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/electron-electron/docs/tutorial/examples.md:36:145 error 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:32:208 error MD060/table-column-style Table column style [Table pipe does not align with header for style "aligned"]␊ + test-repos/electron-electron/docs/tutorial/esm.md:33:182 error MD060/table-column-style Table column style [Table pipe does not align with header for style "aligned"]␊ + test-repos/electron-electron/docs/tutorial/esm.md:34:45 error MD060/table-column-style Table column style [Table pipe does not align with header for style "aligned"]␊ + test-repos/electron-electron/docs/tutorial/esm.md:34:56 error MD060/table-column-style Table column style [Table pipe does not align with header for style "aligned"]␊ + test-repos/electron-electron/docs/tutorial/esm.md:34:66 error MD060/table-column-style Table column style [Table pipe does not align with header for style "aligned"]␊ + test-repos/electron-electron/docs/tutorial/esm.md:34:368 error MD060/table-column-style Table column style [Table pipe does not align with header for style "aligned"]␊ + test-repos/electron-electron/docs/tutorial/esm.md:35:49 error MD060/table-column-style Table column style [Table pipe does not align with header for style "aligned"]␊ + test-repos/electron-electron/docs/tutorial/esm.md:35:60 error MD060/table-column-style Table column style [Table pipe does not align with header for style "aligned"]␊ + test-repos/electron-electron/docs/tutorial/esm.md:35:70 error MD060/table-column-style Table column style [Table pipe does not align with header for style "aligned"]␊ + test-repos/electron-electron/docs/tutorial/esm.md:35:369 error MD060/table-column-style Table column style [Table pipe does not align with header for style "aligned"]␊ + test-repos/electron-electron/docs/tutorial/examples.md:30:27 error MD060/table-column-style Table column style [Table pipe does not align with header for style "aligned"]␊ + test-repos/electron-electron/docs/tutorial/examples.md:30:145 error MD060/table-column-style Table column style [Table pipe does not align with header for style "aligned"]␊ + test-repos/electron-electron/docs/tutorial/examples.md:31:27 error MD060/table-column-style Table column style [Table pipe does not align with header for style "aligned"]␊ + test-repos/electron-electron/docs/tutorial/examples.md:31:145 error MD060/table-column-style Table column style [Table pipe does not align with header for style "aligned"]␊ + test-repos/electron-electron/docs/tutorial/examples.md:32:27 error MD060/table-column-style Table column style [Table pipe does not align with header for style "aligned"]␊ + test-repos/electron-electron/docs/tutorial/examples.md:32:145 error MD060/table-column-style Table column style [Table pipe does not align with header for style "aligned"]␊ + test-repos/electron-electron/docs/tutorial/examples.md:33:27 error MD060/table-column-style Table column style [Table pipe does not align with header for style "aligned"]␊ + test-repos/electron-electron/docs/tutorial/examples.md:33:145 error MD060/table-column-style Table column style [Table pipe does not align with header for style "aligned"]␊ + test-repos/electron-electron/docs/tutorial/examples.md:34:27 error MD060/table-column-style Table column style [Table pipe does not align with header for style "aligned"]␊ + test-repos/electron-electron/docs/tutorial/examples.md:34:145 error MD060/table-column-style Table column style [Table pipe does not align with header for style "aligned"]␊ + test-repos/electron-electron/docs/tutorial/examples.md:35:27 error MD060/table-column-style Table column style [Table pipe does not align with header for style "aligned"]␊ + test-repos/electron-electron/docs/tutorial/examples.md:35:145 error MD060/table-column-style Table column style [Table pipe does not align with header for style "aligned"]␊ + test-repos/electron-electron/docs/tutorial/examples.md:36:27 error MD060/table-column-style Table column style [Table pipe does not align with header for style "aligned"]␊ + test-repos/electron-electron/docs/tutorial/examples.md:36:145 error MD060/table-column-style Table column style [Table pipe does not align with header for style "aligned"]␊ test-repos/electron-electron/docs/tutorial/menus.md:203:32 error 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 @@ -470,13 +470,13 @@ Generated by [AVA](https://avajs.dev). test-repos/v8-v8-dev/src/blog/v8-nodejs.md:29:153 error MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊ test-repos/v8-v8-dev/src/blog/v8-release-80.md:46 error 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 error MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| ^^ | GC | -7%..."]␊ - test-repos/v8-v8-dev/src/blog/v8-release-80.md:47:15 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/v8-v8-dev/src/blog/v8-release-80.md:48:15 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/v8-v8-dev/src/blog/v8-release-80.md:49:15 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/v8-v8-dev/src/blog/v8-release-80.md:50:15 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/v8-v8-dev/src/blog/v8-release-80.md:51:15 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/v8-v8-dev/src/blog/v8-release-80.md:52:15 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/v8-v8-dev/src/blog/v8-release-80.md:53:15 error 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:47:15 error MD060/table-column-style Table column style [Table pipe does not align with header for style "aligned"]␊ + test-repos/v8-v8-dev/src/blog/v8-release-80.md:48:15 error MD060/table-column-style Table column style [Table pipe does not align with header for style "aligned"]␊ + test-repos/v8-v8-dev/src/blog/v8-release-80.md:49:15 error MD060/table-column-style Table column style [Table pipe does not align with header for style "aligned"]␊ + test-repos/v8-v8-dev/src/blog/v8-release-80.md:50:15 error MD060/table-column-style Table column style [Table pipe does not align with header for style "aligned"]␊ + test-repos/v8-v8-dev/src/blog/v8-release-80.md:51:15 error MD060/table-column-style Table column style [Table pipe does not align with header for style "aligned"]␊ + test-repos/v8-v8-dev/src/blog/v8-release-80.md:52:15 error MD060/table-column-style Table column style [Table pipe does not align with header for style "aligned"]␊ + test-repos/v8-v8-dev/src/blog/v8-release-80.md:53:15 error MD060/table-column-style Table column style [Table pipe does not align with header for style "aligned"]␊ test-repos/v8-v8-dev/src/blog/v8-release-86.md:16:371 error MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊ test-repos/v8-v8-dev/src/blog/wasm-decompile.md:153:61 error MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊ test-repos/v8-v8-dev/src/blog/wasm-decompile.md:153:206 error MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊ @@ -555,8 +555,8 @@ Generated by [AVA](https://avajs.dev). test-repos/v8-v8-dev/src/features/promise-combinators.md:120:1 error MD033/no-inline-html Inline HTML [Element: feature-support]␊ test-repos/v8-v8-dev/src/features/promise-combinators.md:23 error MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| name ..."]␊ test-repos/v8-v8-dev/src/features/promise-combinators.md:28 error MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| [\`Promise.any\`](#promise.any..."]␊ - test-repos/v8-v8-dev/src/features/promise-combinators.md:25:172 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/v8-v8-dev/src/features/promise-combinators.md:28:172 error 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:25:172 error MD060/table-column-style Table column style [Table pipe does not align with header for style "aligned"]␊ + test-repos/v8-v8-dev/src/features/promise-combinators.md:28:172 error MD060/table-column-style Table column style [Table pipe does not align with header for style "aligned"]␊ test-repos/v8-v8-dev/src/features/promise-finally.md:82:1 error MD033/no-inline-html Inline HTML [Element: feature-support]␊ test-repos/v8-v8-dev/src/features/regexp-match-indices.md:134:1 error MD033/no-inline-html Inline HTML [Element: feature-support]␊ test-repos/v8-v8-dev/src/features/regexp-v-flag.md:254:1 error MD033/no-inline-html Inline HTML [Element: feature-support]␊ @@ -595,24 +595,24 @@ Generated by [AVA](https://avajs.dev). test-repos/webhintio-hint/packages/hint-no-protocol-relative-urls/README.md:110:1 error MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "ie issue"] [Context: "[ie issue]: https://www.steves..."]␊ test-repos/webhintio-hint/packages/hint-performance-budget/README.md:198:1 error MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "tcp handshake"] [Context: "[tcp handshake]: https://hpbn...."]␊ test-repos/webhintio-hint/packages/hint-strict-transport-security/README.md:278:1 error MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "mod_mime"] [Context: "[mod_mime]: https://httpd.apac..."]␊ - test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:21:41 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:21:50 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:22:25 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:22:35 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:22:39 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:22:48 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:23:25 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:23:35 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:23:39 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:23:49 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:24:40 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:24:49 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:25:40 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:25:49 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:26:40 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:26:49 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:27:40 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:27:49 error 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:41 error MD060/table-column-style Table column style [Table pipe does not align with header for style "aligned"]␊ + test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:21:50 error MD060/table-column-style Table column style [Table pipe does not align with header for style "aligned"]␊ + test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:22:25 error MD060/table-column-style Table column style [Table pipe does not align with header for style "aligned"]␊ + test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:22:35 error MD060/table-column-style Table column style [Table pipe does not align with header for style "aligned"]␊ + test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:22:39 error MD060/table-column-style Table column style [Table pipe does not align with header for style "aligned"]␊ + test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:22:48 error MD060/table-column-style Table column style [Table pipe does not align with header for style "aligned"]␊ + test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:23:25 error MD060/table-column-style Table column style [Table pipe does not align with header for style "aligned"]␊ + test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:23:35 error MD060/table-column-style Table column style [Table pipe does not align with header for style "aligned"]␊ + test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:23:39 error MD060/table-column-style Table column style [Table pipe does not align with header for style "aligned"]␊ + test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:23:49 error MD060/table-column-style Table column style [Table pipe does not align with header for style "aligned"]␊ + test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:24:40 error MD060/table-column-style Table column style [Table pipe does not align with header for style "aligned"]␊ + test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:24:49 error MD060/table-column-style Table column style [Table pipe does not align with header for style "aligned"]␊ + test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:25:40 error MD060/table-column-style Table column style [Table pipe does not align with header for style "aligned"]␊ + test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:25:49 error MD060/table-column-style Table column style [Table pipe does not align with header for style "aligned"]␊ + test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:26:40 error MD060/table-column-style Table column style [Table pipe does not align with header for style "aligned"]␊ + test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:26:49 error MD060/table-column-style Table column style [Table pipe does not align with header for style "aligned"]␊ + test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:27:40 error MD060/table-column-style Table column style [Table pipe does not align with header for style "aligned"]␊ + test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:27:49 error MD060/table-column-style Table column style [Table pipe does not align with header for style "aligned"]␊ test-repos/webhintio-hint/packages/hint-x-content-type-options/README.md:181:1 error MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "fetch spec issue"] [Context: "[fetch spec issue]: https://gi..."]␊ test-repos/webhintio-hint/packages/hint/docs/about/CONTRIBUTORS.md:10:370 error MD056/table-column-count Table column count [Expected: 3; Actual: 2; Too few cells, row will be missing data]␊ test-repos/webhintio-hint/packages/hint/docs/about/GOVERNANCE.md:218:1 error 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..."]␊ diff --git a/test/snapshots/markdownlint-test-repos-small.mjs.snap b/test/snapshots/markdownlint-test-repos-small.mjs.snap index 67268e50..5c0b59ff 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 75fb2d3f..e6ca9954 100644 --- a/test/snapshots/markdownlint-test-scenarios.mjs.md +++ b/test/snapshots/markdownlint-test-scenarios.mjs.md @@ -8234,7 +8234,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 18, 1, @@ -62076,7 +62076,7 @@ Generated by [AVA](https://avajs.dev). errors: [ { errorContext: null, - errorDetail: 'Table pipe does not align with heading for option "aligned_delimiter"', + errorDetail: 'Table pipe does not align with header for option "aligned_delimiter"', errorRange: [ 5, 1, @@ -62093,7 +62093,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for option "aligned_delimiter"', + errorDetail: 'Table pipe does not align with header for option "aligned_delimiter"', errorRange: [ 9, 1, @@ -62110,7 +62110,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for option "aligned_delimiter"', + errorDetail: 'Table pipe does not align with header for option "aligned_delimiter"', errorRange: [ 13, 1, @@ -62127,7 +62127,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for option "aligned_delimiter"', + errorDetail: 'Table pipe does not align with header for option "aligned_delimiter"', errorRange: [ 22, 1, @@ -62144,7 +62144,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for option "aligned_delimiter"', + errorDetail: 'Table pipe does not align with header for option "aligned_delimiter"', errorRange: [ 4, 1, @@ -62161,7 +62161,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for option "aligned_delimiter"', + errorDetail: 'Table pipe does not align with header for option "aligned_delimiter"', errorRange: [ 20, 1, @@ -62178,7 +62178,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for option "aligned_delimiter"', + errorDetail: 'Table pipe does not align with header for option "aligned_delimiter"', errorRange: [ 3, 1, @@ -62195,7 +62195,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for option "aligned_delimiter"', + errorDetail: 'Table pipe does not align with header for option "aligned_delimiter"', errorRange: [ 5, 1, @@ -62212,7 +62212,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for option "aligned_delimiter"', + errorDetail: 'Table pipe does not align with header for option "aligned_delimiter"', errorRange: [ 7, 1, @@ -62229,7 +62229,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for option "aligned_delimiter"', + errorDetail: 'Table pipe does not align with header for option "aligned_delimiter"', errorRange: [ 18, 1, @@ -62246,7 +62246,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for option "aligned_delimiter"', + errorDetail: 'Table pipe does not align with header for option "aligned_delimiter"', errorRange: [ 2, 1, @@ -62263,7 +62263,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for option "aligned_delimiter"', + errorDetail: 'Table pipe does not align with header for option "aligned_delimiter"', errorRange: [ 4, 1, @@ -62280,7 +62280,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for option "aligned_delimiter"', + errorDetail: 'Table pipe does not align with header for option "aligned_delimiter"', errorRange: [ 17, 1, @@ -62419,7 +62419,7 @@ Generated by [AVA](https://avajs.dev). errors: [ { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 22, 1, @@ -62436,7 +62436,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 32, 1, @@ -62453,7 +62453,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 12, 1, @@ -62470,7 +62470,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 24, 1, @@ -62487,7 +62487,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 22, 1, @@ -62504,7 +62504,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 32, 1, @@ -62521,7 +62521,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 20, 1, @@ -62538,7 +62538,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 10, 1, @@ -62555,7 +62555,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 22, 1, @@ -62572,7 +62572,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 20, 1, @@ -62589,7 +62589,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 8, 1, @@ -62606,7 +62606,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 20, 1, @@ -62623,7 +62623,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 27, 1, @@ -62640,7 +62640,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 13, 1, @@ -62657,7 +62657,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 30, 1, @@ -62674,7 +62674,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 37, 1, @@ -62691,7 +62691,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 8, 1, @@ -62708,7 +62708,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 15, 1, @@ -62725,7 +62725,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 22, 1, @@ -62742,7 +62742,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 5, 1, @@ -62759,7 +62759,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 9, 1, @@ -62776,7 +62776,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 13, 1, @@ -62793,7 +62793,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 8, 1, @@ -62810,7 +62810,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 20, 1, @@ -62827,7 +62827,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 27, 1, @@ -62844,7 +62844,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 13, 1, @@ -62861,7 +62861,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 30, 1, @@ -62878,7 +62878,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 37, 1, @@ -62895,7 +62895,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 8, 1, @@ -62912,7 +62912,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 15, 1, @@ -62929,7 +62929,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 22, 1, @@ -62946,7 +62946,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 23, 1, @@ -62963,7 +62963,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 31, 1, @@ -62980,7 +62980,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 9, 1, @@ -62997,7 +62997,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 18, 1, @@ -63014,7 +63014,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 29, 1, @@ -63031,7 +63031,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 9, 1, @@ -63048,7 +63048,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 17, 1, @@ -63065,7 +63065,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 31, 1, @@ -63082,7 +63082,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 6, 1, @@ -63099,7 +63099,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 18, 1, @@ -63116,7 +63116,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 11, 1, @@ -63133,7 +63133,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 28, 1, @@ -63150,7 +63150,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 6, 1, @@ -63167,7 +63167,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 13, 1, @@ -63184,7 +63184,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 4, 1, @@ -63201,7 +63201,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 6, 1, @@ -63218,7 +63218,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 18, 1, @@ -63235,7 +63235,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 11, 1, @@ -63252,7 +63252,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 28, 1, @@ -63269,7 +63269,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 6, 1, @@ -63286,7 +63286,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 13, 1, @@ -63303,7 +63303,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 4, 1, @@ -63320,7 +63320,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 12, 1, @@ -63337,7 +63337,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 21, 1, @@ -63354,7 +63354,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 11, 1, @@ -63371,7 +63371,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 28, 1, @@ -63388,7 +63388,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 7, 1, @@ -63405,7 +63405,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 14, 1, @@ -63422,7 +63422,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 6, 1, @@ -63439,7 +63439,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 16, 1, @@ -63456,7 +63456,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 21, 1, @@ -63473,7 +63473,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 11, 1, @@ -63490,7 +63490,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 26, 1, @@ -63507,7 +63507,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 31, 1, @@ -63524,7 +63524,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 6, 1, @@ -63541,7 +63541,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 11, 1, @@ -63558,7 +63558,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 16, 1, @@ -63575,7 +63575,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 3, 1, @@ -63592,7 +63592,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 5, 1, @@ -63609,7 +63609,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 7, 1, @@ -63626,7 +63626,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 6, 1, @@ -63643,7 +63643,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 16, 1, @@ -63660,7 +63660,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 21, 1, @@ -63677,7 +63677,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 11, 1, @@ -63694,7 +63694,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 26, 1, @@ -63711,7 +63711,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 31, 1, @@ -63728,7 +63728,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 6, 1, @@ -63745,7 +63745,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 11, 1, @@ -63762,7 +63762,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 16, 1, @@ -63779,7 +63779,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 17, 1, @@ -63796,7 +63796,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 7, 1, @@ -63813,7 +63813,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 23, 1, @@ -63830,7 +63830,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 12, 1, @@ -63847,7 +63847,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 27, 1, @@ -63864,7 +63864,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 32, 1, @@ -63881,7 +63881,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 6, 1, @@ -63898,7 +63898,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 13, 1, @@ -63915,7 +63915,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 5, 1, @@ -63932,7 +63932,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 15, 1, @@ -63949,7 +63949,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 10, 1, @@ -63966,7 +63966,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 25, 1, @@ -63983,7 +63983,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 5, 1, @@ -64000,7 +64000,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 10, 1, @@ -64017,7 +64017,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 2, 1, @@ -64034,7 +64034,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 4, 1, @@ -64051,7 +64051,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 5, 1, @@ -64068,7 +64068,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 15, 1, @@ -64085,7 +64085,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 10, 1, @@ -64102,7 +64102,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 25, 1, @@ -64119,7 +64119,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 5, 1, @@ -64136,7 +64136,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 10, 1, @@ -64153,7 +64153,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 16, 1, @@ -64170,7 +64170,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 6, 1, @@ -64187,7 +64187,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 16, 1, @@ -64204,7 +64204,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 10, 1, @@ -64221,7 +64221,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 25, 1, @@ -64238,7 +64238,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 5, 1, @@ -64255,7 +64255,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 12, 1, @@ -67670,7 +67670,7 @@ Generated by [AVA](https://avajs.dev). errors: [ { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 22, 1, @@ -67687,7 +67687,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 32, 1, @@ -67704,7 +67704,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 12, 1, @@ -67721,7 +67721,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 24, 1, @@ -67738,7 +67738,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 22, 1, @@ -67755,7 +67755,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 32, 1, @@ -67772,7 +67772,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 20, 1, @@ -67789,7 +67789,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 10, 1, @@ -67806,7 +67806,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 22, 1, @@ -67823,7 +67823,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 20, 1, @@ -67840,7 +67840,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 23, 1, @@ -67857,7 +67857,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 31, 1, @@ -67874,7 +67874,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 9, 1, @@ -67891,7 +67891,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 18, 1, @@ -67908,7 +67908,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 29, 1, @@ -67925,7 +67925,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 9, 1, @@ -67942,7 +67942,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 17, 1, @@ -67959,7 +67959,7 @@ Generated by [AVA](https://avajs.dev). }, { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 31, 1, @@ -68434,7 +68434,7 @@ Generated by [AVA](https://avajs.dev). errors: [ { errorContext: null, - errorDetail: 'Table pipe does not align with heading for style "aligned"', + errorDetail: 'Table pipe does not align with header for style "aligned"', errorRange: [ 20, 1, diff --git a/test/snapshots/markdownlint-test-scenarios.mjs.snap b/test/snapshots/markdownlint-test-scenarios.mjs.snap index c71bd371..b4b1261d 100644 Binary files a/test/snapshots/markdownlint-test-scenarios.mjs.snap and b/test/snapshots/markdownlint-test-scenarios.mjs.snap differ