mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-09-22 05:40:48 +02:00
40 lines
1.3 KiB
JavaScript
40 lines
1.3 KiB
JavaScript
// @ts-check
|
|
|
|
"use strict";
|
|
|
|
const { addErrorContext, frontMatterHasTitle } = require("../helpers");
|
|
const { getHeadingLevel, getHeadingText } = require("../helpers/micromark.cjs");
|
|
const { filterByTypesCached } = require("./cache");
|
|
|
|
// eslint-disable-next-line jsdoc/valid-types
|
|
/** @type import("./markdownlint").Rule */
|
|
module.exports = {
|
|
"names": [ "MD025", "single-title", "single-h1" ],
|
|
"description": "Multiple top-level headings in the same document",
|
|
"tags": [ "headings" ],
|
|
"parser": "micromark",
|
|
"function": function MD025(params, onError) {
|
|
const level = Number(params.config.level || 1);
|
|
const foundFrontMatterTitle =
|
|
frontMatterHasTitle(
|
|
params.frontMatterLines,
|
|
params.config.front_matter_title
|
|
);
|
|
let hasTopLevelHeading = false;
|
|
for (const heading of filterByTypesCached([ "atxHeading", "setextHeading" ])) {
|
|
const headingLevel = getHeadingLevel(heading);
|
|
if (headingLevel === level) {
|
|
if (hasTopLevelHeading || foundFrontMatterTitle) {
|
|
const headingText = getHeadingText(heading);
|
|
addErrorContext(
|
|
onError,
|
|
heading.startLine,
|
|
headingText
|
|
);
|
|
} else if (heading.startLine === 1) {
|
|
hasTopLevelHeading = true;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
};
|