Callum Barker
2024-06-13 a12d76afdb51e0de3adf5fdaef63e5f20077ff97
quartz/util/path.ts
@@ -168,6 +168,9 @@
export function splitAnchor(link: string): [string, string] {
  let [fp, anchor] = link.split("#", 2)
  if (fp.endsWith(".pdf")) {
    return [fp, anchor === undefined ? "" : `#${anchor}`]
  }
  anchor = anchor === undefined ? "" : "#" + slugAnchor(anchor)
  return [fp, anchor]
}