dependabot[bot]
2024-07-29 bc95332fce762527841e982bc67d0bd61ae601e6
quartz/plugins/transformers/links.ts
@@ -8,6 +8,7 @@
  simplifySlug,
  splitAnchor,
  transformLink,
  joinSegments,
} from "../../util/path"
import path from "path"
import { visit } from "unist-util-visit"
@@ -92,7 +93,7 @@
                }
                node.properties.className = classes
                if (opts.openLinksInNewTab) {
                if (isExternal && opts.openLinksInNewTab) {
                  node.properties.target = "_blank"
                }
@@ -107,7 +108,7 @@
                  // url.resolve is considered legacy
                  // WHATWG equivalent https://nodejs.dev/en/api/v18/url/#urlresolvefrom-to
                  const url = new URL(dest, `https://base.com/${curSlug}`)
                  const url = new URL(dest, "https://base.com/" + stripSlashes(curSlug, true))
                  const canonicalDest = url.pathname
                  let [destCanonical, _destAnchor] = splitAnchor(canonicalDest)
                  if (destCanonical.endsWith("/")) {