fix: sonar

This commit is contained in:
ShareVB 2024-12-15 20:59:48 +01:00
parent 3f7745de2c
commit 8371d208b1

View file

@ -22,7 +22,7 @@ function stripHtmlTags(text: string) {
}
function stripMarkdownLinks(text: string, replacement: string = '$1') {
return text.replace(/\[([^\]]*)\]\([^\)]*\)/g, replacement);
return text.replace(/\[([^\]]*)\]\([^\)]*\)/g, replacement); // NOSONAR
};
function concatDashes(text: string) {
@ -81,7 +81,7 @@ function getTitles(markdown: string, idGenerator: (titleMarkdownContent: string)
return '';
});
[...markdown.matchAll(/^(#+)(.*$)/mg)].forEach(
[...markdown.matchAll(/^(#+)(.*$)/mg)].forEach( // NOSONAR
([match, levelString, titleContent]) => {
const level = levelString.length;