mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-09-22 05:40:48 +02:00
46 lines
1.5 KiB
JavaScript
46 lines
1.5 KiB
JavaScript
// @ts-check
|
|
|
|
"use strict";
|
|
|
|
const { addErrorContext, forEachInlineChild } = require("../helpers");
|
|
|
|
const leftSpaceRe = /(?:^|\s)(\*\*?|__?)\s.*[^\\]\1/g;
|
|
const rightSpaceRe = /(?:^|[^\\])(\*\*?|__?).+\s\1(?:\s|$)/g;
|
|
|
|
module.exports = {
|
|
"names": [ "MD037", "no-space-in-emphasis" ],
|
|
"description": "Spaces inside emphasis markers",
|
|
"tags": [ "whitespace", "emphasis" ],
|
|
"function": function MD037(params, onError) {
|
|
forEachInlineChild(params, "text", (token) => {
|
|
[ leftSpaceRe, rightSpaceRe ].forEach((spaceRe, index) => {
|
|
let match = null;
|
|
while ((match = spaceRe.exec(token.content)) !== null) {
|
|
const [ fullText, marker ] = match;
|
|
const line = params.lines[token.lineNumber - 1];
|
|
if (line.includes(fullText)) {
|
|
const text = fullText.trim();
|
|
const column = line.indexOf(text) + 1;
|
|
const length = text.length;
|
|
const markerLength = marker.length;
|
|
const emphasized = text.slice(markerLength, length - markerLength);
|
|
const fixedText = `${marker}${emphasized.trim()}${marker}`;
|
|
addErrorContext(
|
|
onError,
|
|
token.lineNumber,
|
|
text,
|
|
index === 0,
|
|
index !== 0,
|
|
[ column, length ],
|
|
{
|
|
"editColumn": column,
|
|
"deleteCount": length,
|
|
"insertText": fixedText
|
|
}
|
|
);
|
|
}
|
|
}
|
|
});
|
|
});
|
|
}
|
|
};
|