This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| From b677d3822342e8460a0d5459c605439066e6ce8d Mon Sep 17 00:00:00 2001 | |
| From: HyperCherry <[email protected]> | |
| Date: Sat, 22 Mar 2025 23:19:36 +0800 | |
| Subject: [PATCH] feat: add twikoo comment support | |
| --- | |
| src/components/comment/Twikoo.astro | 28 ++++++++++++++++++++++++++++ | |
| src/layouts/Layout.astro | 11 ++++++++++- | |
| src/pages/posts/[...slug].astro | 3 +++ | |
| 3 files changed, 41 insertions(+), 1 deletion(-) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| :root { | |
| --tk-text: black; | |
| --code-block-text: #d1d5db; | |
| } | |
| html.dark { | |
| --tk-text: #d1d5db; | |
| } | |
| .tk-comments { |