mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-09-21 21:30:47 +02:00
37 lines
1.5 KiB
JavaScript
37 lines
1.5 KiB
JavaScript
// @ts-check
|
|
|
|
"use strict";
|
|
|
|
const { addErrorContext, frontMatterHasTitle } = require("../helpers");
|
|
const { filterByTypes, getHeadingLevel, getHtmlTagInfo, isHtmlFlowComment, nonContentTokens } =
|
|
require("../helpers/micromark.cjs");
|
|
|
|
// eslint-disable-next-line jsdoc/valid-types
|
|
/** @type import("./markdownlint").Rule */
|
|
module.exports = {
|
|
"names": [ "MD041", "first-line-heading", "first-line-h1" ],
|
|
"description": "First line in a file should be a top-level heading",
|
|
"tags": [ "headings" ],
|
|
"parser": "micromark",
|
|
"function": function MD041(params, onError) {
|
|
const level = Number(params.config.level || 1);
|
|
if (!frontMatterHasTitle(params.frontMatterLines, params.config.front_matter_title)) {
|
|
params.parsers.micromark.tokens.
|
|
filter((token) => !nonContentTokens.has(token.type) && !isHtmlFlowComment(token)).
|
|
every((token) => {
|
|
let isError = true;
|
|
if ((token.type === "atxHeading") || (token.type === "setextHeading")) {
|
|
isError = (getHeadingLevel(token) !== level);
|
|
} else if (token.type === "htmlFlow") {
|
|
const htmlTexts = filterByTypes(token.children, [ "htmlText" ], true);
|
|
const tagInfo = (htmlTexts.length > 0) && getHtmlTagInfo(htmlTexts[0]);
|
|
isError = !tagInfo || (tagInfo.name.toLowerCase() !== `h${level}`);
|
|
}
|
|
if (isError) {
|
|
addErrorContext(onError, token.startLine, params.lines[token.startLine - 1]);
|
|
}
|
|
return false;
|
|
});
|
|
}
|
|
}
|
|
};
|