lint(links.ts): fix declarations

This commit is contained in:
bfahrenfort 2024-12-17 12:12:26 -06:00
parent 663607d296
commit a010948644

View File

@ -58,12 +58,12 @@ export const CrawlLinks: QuartzTransformerPlugin<Partial<Options>> = (userOpts)
node.properties &&
typeof node.properties.href === "string"
) {
let href = node.properties.href
var dest = href as RelativeURL
var refIcon: string | ElementContent | null = null
var matched = false
const href = node.properties.href
let dest = href as RelativeURL
let refIcon: string | ElementContent | null = null
let matched = false
opts.substitutions?.every(([regex, sub]) => {
let parts = href.match(regex)
const parts = href.match(regex)
if (parts != null) {
dest = parts.slice(1).join("") as RelativeURL
if (typeof sub == "object") {