a2620d34f6
* Add support for utterances * Add utterances config documentation * Update CHANGELOG and history Close #1909
20 lines
No EOL
606 B
HTML
20 lines
No EOL
606 B
HTML
<script>
|
|
'use strict';
|
|
|
|
(function() {
|
|
var commentContainer = document.querySelector('#utterances-comments');
|
|
|
|
if (!commentContainer) {
|
|
return;
|
|
}
|
|
|
|
var script = document.createElement('script');
|
|
script.setAttribute('src', 'https://utteranc.es/client.js');
|
|
script.setAttribute('repo', '{{ site.repository }}');
|
|
script.setAttribute('issue-term', 'pathname');
|
|
script.setAttribute('theme', '{{ site.comments.utterances.theme | default: "github-light" }}');
|
|
script.setAttribute('crossorigin', 'anonymous');
|
|
|
|
commentContainer.appendChild(script);
|
|
})();
|
|
</script> |