feat: added support for Disqus (#120)

* feat: added support for Disqus
* feat: allow disqus to be disabled through frontmatter

Set:
    bookDisableComments: true

On a page to disable disqus for the content.
This commit is contained in:
Dave Kerr
2020-01-14 00:46:19 +08:00
committed by Alex Shpak
parent e037b7c70f
commit 36a8cf5169
3 changed files with 18 additions and 0 deletions
+8
View File
@@ -24,6 +24,7 @@
- Customisable
- Zero initial configuration
- Handy shortcodes
- Optional support for Disqus
## Requirements
@@ -117,6 +118,10 @@ You can also see `yaml` example [here](https://github.com/alex-shpak/hugo-book/b
# Always put it on the top of the configuration file, otherwise it won't work
googleAnalytics = "UA-XXXXXXXXX-X"
# (Optional) If you provide a Disqus shortname, comments will be enabled on
# all pages.
disqusShortname = "my-site"
# (Optional) Set this to true if you use capital letters in file names
disablePathToLower = true
@@ -190,6 +195,9 @@ bookHidden = true
# (Optional) Set how many levels of ToC to show. use 'false' to hide ToC completely
bookToC = 3
# If you have enabled Disqus for the site, you can disable it for specific pages.
bookDisableComments = true
```
### Partials