mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-09-22 05:40:48 +02:00
38 lines
1.2 KiB
JavaScript
38 lines
1.2 KiB
JavaScript
// @ts-check
|
|
|
|
import { addError, nextLinesRe } from "../helpers/helpers.cjs";
|
|
import { getHtmlTagInfo } from "../helpers/micromark-helpers.cjs";
|
|
import { filterByTypesCached } from "./cache.mjs";
|
|
|
|
/** @type {import("markdownlint").Rule} */
|
|
export default {
|
|
"names": [ "MD033", "no-inline-html" ],
|
|
"description": "Inline HTML",
|
|
"tags": [ "html" ],
|
|
"parser": "micromark",
|
|
"function": function MD033(params, onError) {
|
|
let allowedElements = params.config.allowed_elements;
|
|
allowedElements = Array.isArray(allowedElements) ? allowedElements : [];
|
|
allowedElements = allowedElements.map((element) => element.toLowerCase());
|
|
for (const token of filterByTypesCached([ "htmlText" ], true)) {
|
|
const htmlTagInfo = getHtmlTagInfo(token);
|
|
if (
|
|
htmlTagInfo &&
|
|
!htmlTagInfo.close &&
|
|
!allowedElements.includes(htmlTagInfo.name.toLowerCase())
|
|
) {
|
|
const range = [
|
|
token.startColumn,
|
|
token.text.replace(nextLinesRe, "").length
|
|
];
|
|
addError(
|
|
onError,
|
|
token.startLine,
|
|
"Element: " + htmlTagInfo.name,
|
|
undefined,
|
|
range
|
|
);
|
|
}
|
|
}
|
|
}
|
|
};
|