File tree Expand file tree Collapse file tree 4 files changed +12
-0
lines changed Expand file tree Collapse file tree 4 files changed +12
-0
lines changed Original file line number Diff line number Diff line change 19
19
- Fixed very long strings to wrap around the next line rather than go off-screen (#787 )
20
20
- Added ` footer-hover-col ` config setting to customize the hover colour of links in the footer (#848 )
21
21
- Added social network link for Discord (#907 )
22
+ - Added CommentBox as comment option (#960 )
22
23
23
24
## v5.0.0 (2020-09-15)
24
25
Original file line number Diff line number Diff line change @@ -161,6 +161,9 @@ footer-hover-col: "#0085A1"
161
161
# To use Facebook Comments, create a Facebook app and fill in the Facebook App ID
162
162
# fb_comment_id: ""
163
163
164
+ # To use CommentBox, sign up for a Project ID on https://commentbox.io
165
+ # commentbox: "" # Project ID, e.g. "5694267682979840-proj"
166
+
164
167
# To use Utterances comments: (0) uncomment the following section, (1) fill in
165
168
# "repository" (make sure the repository is public), (2) Enable Issues in your repository,
166
169
# (3) Install the Utterances app in your repository https://github.com/apps/utterances
Original file line number Diff line number Diff line change
1
+ {% if site.commentbox %}
2
+
3
+ < div class ="commentbox "> </ div >
4
+ < script src ="https://unpkg.com/commentbox.io/dist/commentBox.min.js "> </ script >
5
+ < script > commentBox ( '{{ site.commentbox }}' ) </ script >
6
+
7
+ {% endif %}
Original file line number Diff line number Diff line change 4
4
{% include staticman-comments.html %}
5
5
{% include utterances-comment.html %}
6
6
{% include giscus-comment.html %}
7
+ {% include commentbox.html %}
7
8
{% endif %}
You can’t perform that action at this time.
0 commit comments