mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-09-21 21:30:47 +02:00
59 lines
1.9 KiB
JavaScript
59 lines
1.9 KiB
JavaScript
// @ts-check
|
|
|
|
import { addErrorContext } from "../helpers/helpers.cjs";
|
|
import { filterByTypesCached } from "./cache.mjs";
|
|
|
|
/**
|
|
* Adds an error for a label space issue.
|
|
*
|
|
* @param {import("markdownlint").RuleOnError} onError Error-reporting callback.
|
|
* @param {import("markdownlint").MicromarkToken} label Label token.
|
|
* @param {import("markdownlint").MicromarkToken} labelText LabelText token.
|
|
* @param {boolean} isStart True iff error is at the start of the link.
|
|
*/
|
|
function addLabelSpaceError(onError, label, labelText, isStart) {
|
|
const match = labelText.text.match(isStart ? /^[^\S\r\n]+/ : /[^\S\r\n]+$/);
|
|
const range = match ?
|
|
[
|
|
(isStart ? (labelText.startColumn) : (labelText.endColumn - match[0].length)),
|
|
match[0].length
|
|
] :
|
|
undefined;
|
|
addErrorContext(
|
|
onError,
|
|
isStart ? (labelText.startLine + (match ? 0 : 1)) : (labelText.endLine - (match ? 0 : 1)),
|
|
label.text.replace(/\s+/g, " "),
|
|
isStart,
|
|
!isStart,
|
|
range,
|
|
range ?
|
|
{
|
|
"editColumn": range[0],
|
|
"deleteCount": range[1]
|
|
} :
|
|
undefined
|
|
);
|
|
}
|
|
|
|
/** @type {import("markdownlint").Rule} */
|
|
export default {
|
|
"names": [ "MD039", "no-space-in-links" ],
|
|
"description": "Spaces inside link text",
|
|
"tags": [ "whitespace", "links" ],
|
|
"parser": "micromark",
|
|
"function": function MD039(params, onError) {
|
|
const labels = filterByTypesCached([ "label" ])
|
|
.filter((label) => label.parent?.type === "link");
|
|
for (const label of labels) {
|
|
const labelTexts = label.children.filter((child) => child.type === "labelText");
|
|
for (const labelText of labelTexts) {
|
|
if (labelText.text.trimStart().length !== labelText.text.length) {
|
|
addLabelSpaceError(onError, label, labelText, true);
|
|
}
|
|
if (labelText.text.trimEnd().length !== labelText.text.length) {
|
|
addLabelSpaceError(onError, label, labelText, false);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
};
|