Skip to content

Commit

Permalink
Merge pull request #11 from spotware/dev
Browse files Browse the repository at this point in the history
Added Github comment to docs
  • Loading branch information
amusleh-spotware-com authored Mar 16, 2022
2 parents a7e04e7 + 93e8836 commit 50b00db
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 0 deletions.
1 change: 1 addition & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ theme:
include_search_page: false
search_index_only: true
language: en
custom_dir: overrides
features:
- navigation.instant
- navigation.top
Expand Down
52 changes: 52 additions & 0 deletions overrides/main.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
{% extends "base.html" %}

{% block content %}
{{ super() }}

<!-- Giscus -->
<h2 id="__comments">{{ lang.t("meta.comments") }}</h2>
<!-- Replace with generated snippet -->

<script src="https://giscus.app/client.js"
data-repo="spotware/OpenApiPy"
data-repo-id="R_kgDOGZc_9A"
data-category="Announcements"
data-category-id="DIC_kwDOGZc_9M4CAPRV"
data-mapping="pathname"
data-reactions-enabled="1"
data-emit-metadata="0"
data-input-position="top"
data-theme="light"
data-lang="en"
crossorigin="anonymous"
async>
</script>

<!-- Reload on palette change -->
<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_dimmed" : "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 50b00db

Please sign in to comment.