From 25ba1159ad5cabfe79c80a40ead158c389a68bef Mon Sep 17 00:00:00 2001
From: Youssif Shaaban Alsager <ysh-alsager@hotmail.com>
Date: Wed, 24 Aug 2022 03:32:40 +0000
Subject: [PATCH] feat: Add internationalization (i18n) support (#182)

---
 config.toml |   11 ++++++++---
 1 files changed, 8 insertions(+), 3 deletions(-)

diff --git a/config.toml b/config.toml
index a0d71f7..a545ed8 100644
--- a/config.toml
+++ b/config.toml
@@ -1,14 +1,14 @@
 baseURL = "https://quartz.jzhao.xyz/"
 languageCode = "en-us"
 googleAnalytics = "G-XYFD95KB4J"
-pygmentsUseClasses = true
 relativeURLs = false
 disablePathToLower = true
 ignoreFiles = [
     "/content/templates/*",
     "/content/private/*",
 ]
-summaryLength = 35
+summaryLength = 20
+paginate = 10
 enableGitInfo = true
 
 [markup]
@@ -17,6 +17,7 @@
         ordered = true
         startLevel = 2
     [markup.highlight]
+        noClasses = false
         anchorLineNos = false
         codeFences = true
         guessSyntax = true
@@ -26,4 +27,8 @@
         lineNos = true
         lineNumbersInTable = true
         style = "dracula"
-        tabWidth = 4
+    [frontmatter]
+        lastmod = ["lastmod", ":git", "date", "publishDate"]
+        publishDate = ["publishDate", "date"]
+    [markup.goldmark.renderer]
+        unsafe = true

--
Gitblit v1.10.0