mirror of
https://github.com/theoludwig/markdownlint-rule-relative-links.git
synced 2026-02-20 03:09:05 +01:00
chore: dependency vendoring of markdownlint-rule-helpers
This commit is contained in:
38
src/markdownlint-rule-helpers/helpers.js
Normal file
38
src/markdownlint-rule-helpers/helpers.js
Normal file
@@ -0,0 +1,38 @@
|
||||
/**
|
||||
* Dependency Vendoring of `markdownlint-rule-helpers`
|
||||
* @see https://www.npmjs.com/package/markdownlint-rule-helpers
|
||||
*/
|
||||
|
||||
/** @typedef {import('markdownlint').RuleParams} MarkdownLintRuleParams */
|
||||
/** @typedef {import('markdownlint').MarkdownItToken} MarkdownItToken */
|
||||
|
||||
/**
|
||||
* Calls the provided function for each matching token.
|
||||
*
|
||||
* @param {MarkdownLintRuleParams} params RuleParams instance.
|
||||
* @param {string} type Token type identifier.
|
||||
* @param {(token: MarkdownItToken) => void} handler Callback function.
|
||||
* @returns {void}
|
||||
*/
|
||||
const filterTokens = (params, type, handler) => {
|
||||
for (const token of params.tokens) {
|
||||
if (token.type === type) {
|
||||
handler(token)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets a Regular Expression for matching the specified HTML attribute.
|
||||
*
|
||||
* @param {string} name HTML attribute name.
|
||||
* @returns {RegExp} Regular Expression for matching.
|
||||
*/
|
||||
const getHtmlAttributeRe = (name) => {
|
||||
return new RegExp(`\\s${name}\\s*=\\s*['"]?([^'"\\s>]*)`, "iu")
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
filterTokens,
|
||||
getHtmlAttributeRe,
|
||||
}
|
||||
Reference in New Issue
Block a user