mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-09-21 21:30:47 +02:00
42 lines
1.2 KiB
JavaScript
42 lines
1.2 KiB
JavaScript
// @ts-check
|
|
|
|
"use strict";
|
|
|
|
const { addError, nextLinesRe } = require("../helpers");
|
|
const { filterByTypes, getHtmlTagInfo } =
|
|
require("../helpers/micromark.cjs");
|
|
|
|
// eslint-disable-next-line jsdoc/valid-types
|
|
/** @type import("./markdownlint").Rule */
|
|
module.exports = {
|
|
"names": [ "MD033", "no-inline-html" ],
|
|
"description": "Inline HTML",
|
|
"tags": [ "html" ],
|
|
"function": function MD033(params, onError) {
|
|
let allowedElements = params.config.allowed_elements;
|
|
allowedElements = Array.isArray(allowedElements) ? allowedElements : [];
|
|
allowedElements = allowedElements.map((element) => element.toLowerCase());
|
|
// eslint-disable-next-line dot-notation
|
|
const { tokens } = params.parsers["micromark"];
|
|
for (const token of filterByTypes(tokens, [ "htmlText" ])) {
|
|
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
|
|
);
|
|
}
|
|
}
|
|
}
|
|
};
|