-
I followed the docs for enabling comments with Giscus and I added the snippet of code to the comments.html partials folder in overrides like so: {% if page.meta.comments %}
<h2 id="__comments">{{ lang.t("meta.comments") }}</h2>
<script src="https://giscus.app/client.js"
data-repo="zerenxyz/comments"
data-repo-id="..."
data-category-id="..."
data-mapping="pathname"
data-strict="0"
data-reactions-enabled="1"
data-emit-metadata="0"
data-input-position="bottom"
data-theme="light"
data-lang="en"
crossorigin="anonymous"
async>
</script>
<!-- Synchronize Giscus theme with palette -->
<script>
var giscus = document.querySelector("script[src*=giscus]")
/* Set palette on initial load */
var palette = __md_get("__palette")
if (palette && typeof palette.color === "object") {
var theme = palette.color.scheme === "slate" ? "dark" : "light"
giscus.setAttribute("data-theme", theme)
}
/* 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>
{% endif %} And I enabled it on a page to test, but I get the following error when I try and open the page: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
In general, it's impossible to help you without exactly knowing your setup... That being said, the request seems to be local – are you using the built-in privacy plugin? Giscus can't be automatically self-hosted by the privacy plugin, because it's an SPA. Giscus and MathJax must be excluded via plugins:
- privacy:
external_assets_exclude:
- cdn.jsdelivr.net/npm/mathjax@3/*
- giscus.app/* If that's not the case, please, as always, provide a minimal reproducible example... Otherwise, we can only guess and that eats time. |
Beta Was this translation helpful? Give feedback.
In general, it's impossible to help you without exactly knowing your setup... That being said, the request seems to be local – are you using the built-in privacy plugin? Giscus can't be automatically self-hosted by the privacy plugin, because it's an SPA. Giscus and MathJax must be excluded via
external_assets_exclude
:If that's not the case, please, as always, provide a minimal reproducible example... Otherwise, we can only guess and that eats time.