是否可以使用 github-pages 在博客中集成 disqus html 评论?为了简单起见,我喜欢使用 github、jekyll 和 markdown 来管理我的网站和博客的想法。但是,我想包括 disqus 评论功能。但是,由于 Markdown 生成 html - 我如何为 disqus 包含 html/js 代码?
最佳答案
最简单和最干净的方法是使用 disqus 在您的 _includes/
文件夹(例如 _includes/disqus.html
)中提供的 HTML 创建一个部分,然后将其包含在您的帖子布局文件中(例如 0x251812143134):
{% include disqus.html %}
你可以在这里看到一个例子: post layout 和 disqus partial 。
关于jekyll - 如何在github页面博客(Markdown)中使用disqus评论?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/21446165/