Enable comments on minimal mistake theme of GitHub pages
Enable comments on minimal mistake theme of GitHub pages
April 26, 2020
The configuration to enable comments is described in the official page.
Supported providers
There are some providers to support comments, and some of them is not free.
- Disqus: Not free
- Discourse: Not free
- Facebook: Free
- Utterance: Free with GitHub issues.
- Staticman: Free but needs to setup our own instances like on heroku (which is explain in this issue).
Utterance
utterance is easy to setup, and users require GitHub authentication to comment, and it can enable you to get notifications for issues. Furthermore, because you can manage messages on GitHub, you can manage comments on GitHub features.
Getting Started
Configuration is written in the official page.
Basically, you only need to add next configurations in _config.yml
.
comments:
provider: "utterances"
utterances:
theme: "github-light" # "github-dark"
issue_term: "pathname"
Which issue_term is supported can be checked on utterance official page and see what the generated javascript code is after you change the options.
Last updated on