From e763e1969e9796d8f55110f32f645f4ff009968a Mon Sep 17 00:00:00 2001
From: iacore <74560659+iacore@users.noreply.github.com>
Date: Fri, 19 Apr 2024 20:02:49 +0000
Subject: [PATCH] Allow pnpm quartz (#1078)
---
quartz/plugins/transformers/ofm.ts | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/quartz/plugins/transformers/ofm.ts b/quartz/plugins/transformers/ofm.ts
index 3ee6480..108f7f7 100644
--- a/quartz/plugins/transformers/ofm.ts
+++ b/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
})
--
Gitblit v1.10.0