Skip to content

Commit

Permalink
feat: Add giscus
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaoxuan6 committed Dec 21, 2023
1 parent e8b5b39 commit 23f28a0
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 0 deletions.
1 change: 1 addition & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ extra:

theme:
name: material
custom_dir: overrides
features: # https://squidfunk.github.io/mkdocs-material/setup/
- navigation.instant # 进度指示器
- navigation.instant.progress
Expand Down
48 changes: 48 additions & 0 deletions overrides/main.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
{% extends "base.html" %} {% block content %} {{ super() }}

<!-- Giscus -->
<script src="https://giscus.app/client.js"
data-repo="xiaoxuan6/weekly"
data-repo-id="R_kgDOK7CX9A"
data-category="Announcements"
data-category-id="DIC_kwDOK7CX9M4Cb6Pe"
data-mapping="pathname"
data-strict="0"
data-reactions-enabled="1"
data-emit-metadata="0"
data-input-position="bottom"
data-theme="dark"
data-lang="zh-CN"
crossorigin="anonymous"
async>
</script>

<!-- Synchronize Giscus theme with palette -->
<script>
var palette = __md_get("__palette");
if (palette && typeof palette.color === "object")
if (palette.color.scheme === "slate") {
var giscus = document.querySelector("script[src*=giscus]");
giscus.setAttribute("data-theme", "dark");
}

// Register event handlers after documented loaded
document.addEventListener("DOMContentLoaded", function () {
var ref = document.querySelector("[data-md-component=palette]")
ref.addEventListener("change", function () {
var palette = __md_get("__palette")
if (palette && typeof palette.color === "object") {
var theme = palette.color.scheme === "slate" ? "dark" : "light";

// Instruct Giscus to change theme
var frame = document.querySelector(".giscus-frame")
frame.contentWindow.postMessage(
{giscus: {setConfig: {theme}}},
"https://giscus.app"
)
}
})
})
</script>

{% endblock %}

0 comments on commit 23f28a0

Please sign in to comment.