2018-01-21 21:44:25 -08:00
|
|
|
// @ts-check
|
|
|
|
|
|
|
|
"use strict";
|
|
|
|
|
2023-07-24 21:36:55 -07:00
|
|
|
const { addError } = require("../helpers");
|
2023-09-02 12:07:14 -07:00
|
|
|
const { filterByPredicate } = require("../helpers/micromark.cjs");
|
2018-01-21 21:44:25 -08:00
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
"names": [ "MD037", "no-space-in-emphasis" ],
|
|
|
|
"description": "Spaces inside emphasis markers",
|
|
|
|
"tags": [ "whitespace", "emphasis" ],
|
|
|
|
"function": function MD037(params, onError) {
|
2023-07-24 21:36:55 -07:00
|
|
|
|
|
|
|
// Initialize variables
|
|
|
|
const { lines, parsers } = params;
|
|
|
|
const emphasisTokensByMarker = new Map();
|
|
|
|
for (const marker of [ "_", "__", "___", "*", "**", "***" ]) {
|
|
|
|
emphasisTokensByMarker.set(marker, []);
|
2020-04-12 20:40:05 -07:00
|
|
|
}
|
2023-09-02 12:07:14 -07:00
|
|
|
const tokens = filterByPredicate(
|
|
|
|
parsers.micromark.tokens,
|
|
|
|
(token) => token.children.some((child) => child.type === "data")
|
|
|
|
);
|
|
|
|
for (const token of tokens) {
|
2023-07-24 21:36:55 -07:00
|
|
|
|
|
|
|
// Build lists of bare tokens for each emphasis marker type
|
|
|
|
for (const emphasisTokens of emphasisTokensByMarker.values()) {
|
|
|
|
emphasisTokens.length = 0;
|
2020-04-12 20:40:05 -07:00
|
|
|
}
|
2023-07-24 21:36:55 -07:00
|
|
|
for (const child of token.children) {
|
|
|
|
const { text, type } = child;
|
|
|
|
if ((type === "data") && (text.length <= 3)) {
|
|
|
|
const emphasisTokens = emphasisTokensByMarker.get(text);
|
|
|
|
if (emphasisTokens) {
|
|
|
|
emphasisTokens.push(child);
|
|
|
|
}
|
2022-07-30 20:35:27 -07:00
|
|
|
}
|
2020-04-12 20:40:05 -07:00
|
|
|
}
|
2023-07-24 21:36:55 -07:00
|
|
|
|
|
|
|
// Process bare tokens for each emphasis marker type
|
2023-08-29 22:29:04 -07:00
|
|
|
for (const entry of emphasisTokensByMarker.entries()) {
|
|
|
|
const [ marker, emphasisTokens ] = entry;
|
2023-07-24 21:36:55 -07:00
|
|
|
for (let i = 0; i + 1 < emphasisTokens.length; i += 2) {
|
|
|
|
|
|
|
|
// Process start token of start/end pair
|
|
|
|
const startToken = emphasisTokens[i];
|
2023-08-29 22:29:04 -07:00
|
|
|
const startLine = lines[startToken.startLine - 1];
|
|
|
|
const startSlice = startLine.slice(startToken.endColumn - 1);
|
|
|
|
const startMatch = startSlice.match(/^\s+\S/);
|
2023-07-24 21:36:55 -07:00
|
|
|
if (startMatch) {
|
2023-08-29 22:29:04 -07:00
|
|
|
const [ startSpaceCharacter ] = startMatch;
|
|
|
|
const startContext = `${marker}${startSpaceCharacter}`;
|
|
|
|
addError(
|
|
|
|
onError,
|
|
|
|
startToken.startLine,
|
|
|
|
undefined,
|
|
|
|
startContext,
|
|
|
|
[ startToken.startColumn, startContext.length ],
|
|
|
|
{
|
|
|
|
"editColumn": startToken.endColumn,
|
|
|
|
"deleteCount": startSpaceCharacter.length - 1
|
|
|
|
}
|
|
|
|
);
|
2023-07-24 21:36:55 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// Process end token of start/end pair
|
|
|
|
const endToken = emphasisTokens[i + 1];
|
2023-08-29 22:29:04 -07:00
|
|
|
const endLine = lines[endToken.startLine - 1];
|
|
|
|
const endSlice = endLine.slice(0, endToken.startColumn - 1);
|
|
|
|
const endMatch = endSlice.match(/\S\s+$/);
|
2023-07-24 21:36:55 -07:00
|
|
|
if (endMatch) {
|
2023-08-29 22:29:04 -07:00
|
|
|
const [ endSpaceCharacter ] = endMatch;
|
|
|
|
const endContext = `${endSpaceCharacter}${marker}`;
|
|
|
|
addError(
|
|
|
|
onError,
|
|
|
|
endToken.startLine,
|
|
|
|
undefined,
|
|
|
|
endContext,
|
|
|
|
[ endToken.endColumn - endContext.length, endContext.length ],
|
|
|
|
{
|
|
|
|
"editColumn":
|
|
|
|
endToken.startColumn - (endSpaceCharacter.length - 1),
|
|
|
|
"deleteCount": endSpaceCharacter.length - 1
|
|
|
|
}
|
|
|
|
);
|
2019-09-06 22:35:33 -07:00
|
|
|
}
|
2019-03-04 19:54:23 -08:00
|
|
|
}
|
2020-03-28 14:16:28 -07:00
|
|
|
}
|
2023-07-24 21:36:55 -07:00
|
|
|
}
|
2018-01-21 21:44:25 -08:00
|
|
|
}
|
|
|
|
};
|