Sync generated provider output

This commit is contained in:
github-actions[bot]
2026-07-29 21:56:07 +00:00
parent cbba80cdb3
commit 4554895edc
45 changed files with 120 additions and 15 deletions
@@ -880,6 +880,9 @@ function extractFindingIgnoreValueRaw(finding, rule = normalizeIgnoreRule(findin
const primary = text.match(/Primary font:\s*([^()\n;]+)/i);
if (primary) return cleanIgnoreValueDisplay(primary[1]);
const googleLabel = text.match(/Google Fonts:\s*([^()\n;]+)/i);
if (googleLabel) return cleanIgnoreValueDisplay(googleLabel[1]);
const family = text.match(/font-family\s*:\s*["']?([^'",;\n]+)/i);
if (family) return cleanIgnoreValueDisplay(family[1]);