Merge branch 'main' into edition-3

This commit is contained in:
Philipp Oppermann
2022-01-23 18:02:34 +01:00
73 changed files with 7014 additions and 1264 deletions

View File

@@ -9,3 +9,36 @@
Thank you!
</p>
{% endmacro support %}
{% macro giscus(search_term) %}
{% if search_term is number %}
{% set discussion_url = "https://github.com/phil-opp/blog_os/discussions/" ~ search_term %}
{% else %}
{% set search_term_encoded = `"` ~ search_term ~ `"` | urlencode %}
{% set discussion_url = `https://github.com/phil-opp/blog_os/discussions/categories/post-comments?discussions_q=` ~ search_term_encoded %}
{% endif %}
<p class="comment-note">
Do you have a problem, want to share feedback, or discuss further ideas? Feel free to leave a comment here! Please stick to English and follow Rust's <a href="https://www.rust-lang.org/policies/code-of-conduct">code of conduct</a>. This comment thread directly maps to a <a href="{{ discussion_url | safe }}"><em>discussion on GitHub</em></a>, so you can also comment there if you prefer.
</p>
<div class="giscus"></div>
<script src="https://giscus.app/client.js"
data-repo-id="MDEwOlJlcG9zaXRvcnkzOTU3NTEwMQ=="
data-category="Post Comments"
data-category-id="MDE4OkRpc2N1c3Npb25DYXRlZ29yeTMzMDE4OTg1"
{% if search_term is number %}
data-mapping="number"
{% else %}
data-mapping="specific"
{% endif %}
data-term="{{ search_term }}"
data-reactions-enabled="1"
data-emit-metadata="1"
data-theme="preferred_color_scheme"
<p class="comment-directly-on-github">
Instead of authenticating the <a href="https://giscus.app">giscus</a> application, you can also comment directly <a href="{{ discussion_url | safe }}"><em>on GitHub</em></a>.
</p>
{% endmacro giscus %}