Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/kakawait/hugo-tranquilpeak-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorduval <duval1024@gmail.com>2021-09-07 06:11:25 +0300
committerduval <duval1024@gmail.com>2021-09-07 06:14:20 +0300
commitadc447882ecfa41b704bfc9c3257116ca208a397 (patch)
treeeed4e8eba8f40fbff86354d79425e4b74997a625
parent5f5d4649b161b5843245ee14afff1918779a765b (diff)
use md5
fixes #507
-rw-r--r--layouts/partials/post/comment.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/layouts/partials/post/comment.html b/layouts/partials/post/comment.html
index 66858f9..5a67988 100644
--- a/layouts/partials/post/comment.html
+++ b/layouts/partials/post/comment.html
@@ -42,7 +42,7 @@
repo: '{{ .Site.Params.comment.gitalk.repo }}',
owner: '{{ .Site.Params.comment.gitalk.owner }}',
admin: ['{{ .Site.Params.comment.gitalk.owner }}'],
- id: '{{ .RelPermalink }}',
+ id: '{{ md5 .RelPermalink }}',
...{{ .Site.Params.comment.gitalk.options | jsonify | safeJS }}
}).render('gitalk')
})()