mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-09-22 05:40:48 +02:00
106 lines
2.9 KiB
JavaScript
106 lines
2.9 KiB
JavaScript
// @ts-check
|
|
|
|
"use strict";
|
|
|
|
const { addErrorDetailIf, blockquotePrefixRe, isBlankLine } = require("../helpers");
|
|
const { getHeadingLevel } = require("../helpers/micromark.cjs");
|
|
const { filterByTypesCached } = require("./cache");
|
|
|
|
const defaultLines = 1;
|
|
|
|
const getLinesFunction = (linesParam) => {
|
|
if (Array.isArray(linesParam)) {
|
|
const linesArray = new Array(6).fill(defaultLines);
|
|
for (const [ index, value ] of [ ...linesParam.entries() ].slice(0, 6)) {
|
|
linesArray[index] = value;
|
|
}
|
|
return (heading) => linesArray[getHeadingLevel(heading) - 1];
|
|
}
|
|
// Coerce linesParam to a number
|
|
const lines = (linesParam === undefined) ? defaultLines : Number(linesParam);
|
|
return () => lines;
|
|
};
|
|
|
|
const getBlockQuote = (str, count) => (
|
|
(str || "")
|
|
.match(blockquotePrefixRe)[0]
|
|
.trimEnd()
|
|
// eslint-disable-next-line unicorn/prefer-spread
|
|
.concat("\n")
|
|
.repeat(count)
|
|
);
|
|
|
|
// eslint-disable-next-line jsdoc/valid-types
|
|
/** @type import("./markdownlint").Rule */
|
|
module.exports = {
|
|
"names": [ "MD022", "blanks-around-headings" ],
|
|
"description": "Headings should be surrounded by blank lines",
|
|
"tags": [ "headings", "blank_lines" ],
|
|
"parser": "micromark",
|
|
"function": function MD022(params, onError) {
|
|
const getLinesAbove = getLinesFunction(params.config.lines_above);
|
|
const getLinesBelow = getLinesFunction(params.config.lines_below);
|
|
const { lines } = params;
|
|
for (const heading of filterByTypesCached([ "atxHeading", "setextHeading" ])) {
|
|
const { startLine, endLine } = heading;
|
|
const line = lines[startLine - 1].trim();
|
|
|
|
// Check lines above
|
|
const linesAbove = getLinesAbove(heading);
|
|
if (linesAbove >= 0) {
|
|
let actualAbove = 0;
|
|
for (
|
|
let i = 0;
|
|
(i < linesAbove) && isBlankLine(lines[startLine - 2 - i]);
|
|
i++
|
|
) {
|
|
actualAbove++;
|
|
}
|
|
addErrorDetailIf(
|
|
onError,
|
|
startLine,
|
|
linesAbove,
|
|
actualAbove,
|
|
"Above",
|
|
line,
|
|
undefined,
|
|
{
|
|
"insertText": getBlockQuote(
|
|
lines[startLine - 2],
|
|
linesAbove - actualAbove
|
|
)
|
|
}
|
|
);
|
|
}
|
|
|
|
// Check lines below
|
|
const linesBelow = getLinesBelow(heading);
|
|
if (linesBelow >= 0) {
|
|
let actualBelow = 0;
|
|
for (
|
|
let i = 0;
|
|
(i < linesBelow) && isBlankLine(lines[endLine + i]);
|
|
i++
|
|
) {
|
|
actualBelow++;
|
|
}
|
|
addErrorDetailIf(
|
|
onError,
|
|
startLine,
|
|
linesBelow,
|
|
actualBelow,
|
|
"Below",
|
|
line,
|
|
undefined,
|
|
{
|
|
"lineNumber": endLine + 1,
|
|
"insertText": getBlockQuote(
|
|
lines[endLine],
|
|
linesBelow - actualBelow
|
|
)
|
|
}
|
|
);
|
|
}
|
|
}
|
|
}
|
|
};
|