From ce413b4bae40a21e354b2e065fda60045ae28ecb Mon Sep 17 00:00:00 2001
From: Silviu LorenČ› <124451350+smilorent@users.noreply.github.com>
Date: Wed, 07 Feb 2024 16:26:45 +0000
Subject: [PATCH] feat(i18n): add Romanian to i18n (#821)

---
 quartz/util/path.ts |    9 +++++++--
 1 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/quartz/util/path.ts b/quartz/util/path.ts
index 95acf11..5cd79ba 100644
--- a/quartz/util/path.ts
+++ b/quartz/util/path.ts
@@ -51,8 +51,13 @@
   return s
     .split("/")
     .map((segment) =>
-      segment.replace(/\s/g, "-").replace(/%/g, "-percent").replace(/\?/g, "-q").replace(/#/g, ""),
-    ) // slugify all segments
+      segment
+        .replace(/\s/g, "-")
+        .replace(/&/g, "-and-")
+        .replace(/%/g, "-percent")
+        .replace(/\?/g, "")
+        .replace(/#/g, ""),
+    )
     .join("/") // always use / as sep
     .replace(/\/$/, "")
 }

--
Gitblit v1.10.0