[cad161]: / docs / assets / overrides / partials / comments.html

Download this file

55 lines (49 with data), 2.2 kB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{% if page.url.split("/")[0] in ["concepts", "tutorials", "pipes", "tokenizers", "data", "utilities"] %}
<script src="https://giscus.app/client.js"
data-repo="aphp/edsnlp"
data-repo-id="R_kgDOG97JnA"
data-category="Announcements"
loading="lazy"
data-category-id="DIC_kwDOG97JnM4CkS1h"
data-mapping="title"
data-strict="0"
data-reactions-enabled="1"
data-emit-metadata="0"
data-input-position="bottom"
data-theme="https://aphp.github.io/edsnlp/master/assets/stylesheets/giscus_light.css"
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"
? "https://aphp.github.io/edsnlp/master/assets/stylesheets/giscus_dark.css"
: "https://aphp.github.io/edsnlp/master/assets/stylesheets/giscus_light.css"
// Instruct Giscus to set theme
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"
? "https://aphp.github.io/edsnlp/master/assets/stylesheets/giscus_dark.css"
: "https://aphp.github.io/edsnlp/master/assets/stylesheets/giscus_light.css"
// Instruct Giscus to change theme
var frame = document.querySelector(".giscus-frame")
frame.contentWindow.postMessage(
{giscus: {setConfig: {theme}}},
"https://giscus.app"
)
}
})
})
</script>
{% endif %}