mirror of
https://github.com/imfing/hextra.git
synced 2025-09-16 03:56:48 -04:00

* chore(docs): rename `exampleSite` to `docs` and create `examples` * chore(build): update build script to support new version format and source directories; add v0.10 to documentation menu
938 B
938 B
title, linkTitle
title | linkTitle |
---|---|
Comments System | Comments |
Hextra supports adding comments system to your site. Currently giscus is supported.
giscus
giscus is a comments system powered by GitHub Discussions. It is free and open source.
To enable giscus, you need to add the following to the site configuration file:
params:
comments:
enable: false
type: giscus
giscus:
repo: <repository>
repoId: <repository ID>
category: <category>
categoryId: <category ID>
The giscus configurations can be constructed from the giscus.app website. More details can also be found there.
Comments can be enabled or disabled for a specific page in the page front matter:
---
title: About
comments: true
---