From 14df361cecdc93e64bc699041ca0bcc17c5d1ef5 Mon Sep 17 00:00:00 2001 From: "tangly1024.com" Date: Mon, 24 Jul 2023 10:36:01 +0800 Subject: [PATCH 1/2] =?UTF-8?q?fix=20=E7=A7=BB=E5=8A=A8=E7=AB=AF=E5=85=AC?= =?UTF-8?q?=E5=BC=8F=E8=A1=8C=E6=A0=87=E4=B9=B1=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- styles/notion.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/styles/notion.css b/styles/notion.css index 99e8d068..6e47807b 100644 --- a/styles/notion.css +++ b/styles/notion.css @@ -1393,6 +1393,10 @@ code[class*='language-'] { white-space: normal; } +.katex-display>.katex>.katex-html>.tag { + position: inherit !important; +} + .notion-page-title { display: inline-flex; max-width: 100%; From 48b9d95748e8574040825f1c72cfdab10a1ae4ee Mon Sep 17 00:00:00 2001 From: "tangly1024.com" Date: Mon, 24 Jul 2023 10:38:10 +0800 Subject: [PATCH 2/2] =?UTF-8?q?=E5=8F=AF=E5=85=B3=E9=97=ADRSS?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- themes/fukasawa/components/SocialButton.js | 2 +- themes/gitbook/components/SocialButton.js | 2 +- themes/heo/components/SocialButton.js | 2 +- themes/hexo/components/SocialButton.js | 2 +- themes/matery/components/SocialButton.js | 2 +- themes/medium/components/SocialButton.js | 2 +- themes/next/components/SocialButton.js | 2 +- themes/plog/components/SocialButton.js | 2 +- themes/simple/components/SocialButton.js | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/themes/fukasawa/components/SocialButton.js b/themes/fukasawa/components/SocialButton.js index e3d39317..234182cf 100644 --- a/themes/fukasawa/components/SocialButton.js +++ b/themes/fukasawa/components/SocialButton.js @@ -30,7 +30,7 @@ const SocialButton = () => { {BLOG.CONTACT_EMAIL && } - {BLOG.ENABLE_RSS && + {JSON.parse(BLOG.ENABLE_RSS) && } {BLOG.CONTACT_BILIBILI && diff --git a/themes/gitbook/components/SocialButton.js b/themes/gitbook/components/SocialButton.js index 5f51033d..164a71fc 100644 --- a/themes/gitbook/components/SocialButton.js +++ b/themes/gitbook/components/SocialButton.js @@ -29,7 +29,7 @@ const SocialButton = () => { {BLOG.CONTACT_EMAIL && } - {BLOG.ENABLE_RSS && + {JSON.parse(BLOG.ENABLE_RSS) && } diff --git a/themes/heo/components/SocialButton.js b/themes/heo/components/SocialButton.js index 1d9d1d35..e684d325 100644 --- a/themes/heo/components/SocialButton.js +++ b/themes/heo/components/SocialButton.js @@ -30,7 +30,7 @@ const SocialButton = () => { {BLOG.CONTACT_EMAIL && } - {BLOG.ENABLE_RSS && + {JSON.parse(BLOG.ENABLE_RSS) && } {BLOG.CONTACT_BILIBILI && diff --git a/themes/hexo/components/SocialButton.js b/themes/hexo/components/SocialButton.js index e3305cee..1a0b9466 100644 --- a/themes/hexo/components/SocialButton.js +++ b/themes/hexo/components/SocialButton.js @@ -30,7 +30,7 @@ const SocialButton = () => { {BLOG.CONTACT_EMAIL && } - {BLOG.ENABLE_RSS && + {JSON.parse(BLOG.ENABLE_RSS) && } {BLOG.CONTACT_BILIBILI && diff --git a/themes/matery/components/SocialButton.js b/themes/matery/components/SocialButton.js index 6fc213a9..9fc88a5c 100644 --- a/themes/matery/components/SocialButton.js +++ b/themes/matery/components/SocialButton.js @@ -36,7 +36,7 @@ const SocialButton = () => { {BLOG.CONTACT_EMAIL && } - {BLOG.ENABLE_RSS && + {JSON.parse(BLOG.ENABLE_RSS) && } {BLOG.CONTACT_BILIBILI && diff --git a/themes/medium/components/SocialButton.js b/themes/medium/components/SocialButton.js index d33a0564..3a31552e 100644 --- a/themes/medium/components/SocialButton.js +++ b/themes/medium/components/SocialButton.js @@ -29,7 +29,7 @@ const SocialButton = () => { {BLOG.CONTACT_EMAIL && } - {BLOG.ENABLE_RSS && + {JSON.parse(BLOG.ENABLE_RSS) && } {BLOG.CONTACT_BILIBILI && diff --git a/themes/next/components/SocialButton.js b/themes/next/components/SocialButton.js index aa537563..7508b273 100644 --- a/themes/next/components/SocialButton.js +++ b/themes/next/components/SocialButton.js @@ -30,7 +30,7 @@ const SocialButton = () => { {BLOG.CONTACT_EMAIL && } - {BLOG.ENABLE_RSS && + {JSON.parse(BLOG.ENABLE_RSS) && } {BLOG.CONTACT_BILIBILI && diff --git a/themes/plog/components/SocialButton.js b/themes/plog/components/SocialButton.js index 73dae38b..821ff90c 100644 --- a/themes/plog/components/SocialButton.js +++ b/themes/plog/components/SocialButton.js @@ -30,7 +30,7 @@ const SocialButton = () => { {BLOG.CONTACT_EMAIL && } - {BLOG.ENABLE_RSS && + {JSON.parse(BLOG.ENABLE_RSS) && } {BLOG.CONTACT_BILIBILI && diff --git a/themes/simple/components/SocialButton.js b/themes/simple/components/SocialButton.js index 713a6de7..6a53cd70 100644 --- a/themes/simple/components/SocialButton.js +++ b/themes/simple/components/SocialButton.js @@ -30,7 +30,7 @@ const SocialButton = () => { {BLOG.CONTACT_EMAIL && } - {BLOG.ENABLE_RSS && + {JSON.parse(BLOG.ENABLE_RSS) && } {BLOG.CONTACT_BILIBILI &&