midtowndrafting.com/content/docs/advanced/comments.zh-cn.md
2024-05-03 19:04:48 -04:00

876 B

title linkTitle
评论系统 Comments

Hextra 支持在你的网站中添加评论系统。 目前已经支持 giscus.

giscus

giscus 是由 GitHub Discussions驱动的评论系统。Giscus 免费并且开源。

如需启用 Giscus, 你需要在配置文件中添加以下内容:

params:
  comments:
    enable: false
    type: giscus

    giscus:
      repo: <repository>
      repoId: <repository ID>
      category: <category>
      categoryId: <category ID>

Giscus 配置可以参考 giscus.app,还可以在那里找到更多详细信息。

可以在 front matter 中启用或禁用特定页面的评论:

---
title: About
comments: true
---