The Trans Directory
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(wikilinks): proper escaping of pipe character in wikilinks inside tables (#1040)

authored by

Emile Bangma and committed by
GitHub
5ec61468 aa4f5294

+2 -1
+2 -1
quartz/plugins/transformers/ofm.ts
··· 188 188 const [raw]: (string | undefined)[] = capture 189 189 let escaped = raw ?? "" 190 190 escaped = escaped.replace("#", "\\#") 191 - escaped = escaped.replace("|", "\\|") 191 + // escape pipe characters if they are not already escaped 192 + escaped = escaped.replace(/((^|[^\\])(\\\\)*)\|/g, "$1\\|") 192 193 193 194 return escaped 194 195 })