Emile Bangma
2024-03-31 5ec61468d5e787b3c8ae32a2b4ef1595cf0bc3ee
fix(wikilinks): proper escaping of pipe character in wikilinks inside tables (#1040)

1 files modified
3 ■■■■ changed files
quartz/plugins/transformers/ofm.ts 3 ●●●● patch | view | raw | blame | history
quartz/plugins/transformers/ofm.ts
@@ -188,7 +188,8 @@
            const [raw]: (string | undefined)[] = capture
            let escaped = raw ?? ""
            escaped = escaped.replace("#", "\\#")
            escaped = escaped.replace("|", "\\|")
            // escape pipe characters if they are not already escaped
            escaped = escaped.replace(/((^|[^\\])(\\\\)*)\|/g, "$1\\|")
            return escaped
          })