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

github.com/gethugothemes/dot-hugo-documentation-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSomrat Sorkar <37659754+somratpro@users.noreply.github.com>2021-03-07 05:31:56 +0300
committerGitHub <noreply@github.com>2021-03-07 05:31:56 +0300
commitaf14a0d07a436f37d0c7c4322c35a27e8bca6e97 (patch)
tree48b45c779b8bbfaa4011c619721864cad3f7b90f
parent05956a30fd98e93f7dee9338ad31e01d9bbc4458 (diff)
parent38d6b31f390c65473d299104d604cb54c324912e (diff)
Merge pull request #160 from ohanedan/master
turkish character bug fix on faq shortcode
-rw-r--r--layouts/shortcodes/faq.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/layouts/shortcodes/faq.html b/layouts/shortcodes/faq.html
index 2cb2d64..204863d 100644
--- a/layouts/shortcodes/faq.html
+++ b/layouts/shortcodes/faq.html
@@ -2,11 +2,11 @@
<div class="card mb-4 rounded-0 shadow border-0">
<div class="card-header rounded-0 bg-white border p-0 border-0">
- <a class="card-link h4 d-flex tex-dark mb-0 py-3 px-4 justify-content-between" data-toggle="collapse" href="#{{ .Get 0 | anchorize }}">
+ <a class="card-link h4 d-flex tex-dark mb-0 py-3 px-4 justify-content-between" data-toggle="collapse" href="#{{ .Get 0 | sha1 }}">
<span>{{ .Get 0 | markdownify }}</span> <i class="ti-plus text-primary text-right"></i>
</a>
</div>
- <div id="{{ .Get 0 | anchorize }}" class="collapse" data-parent="#accordion">
+ <div id="{{ .Get 0 | sha1 }}" class="collapse" data-parent="#accordion">
<div class="card-body font-secondary text-color">{{ .Inner | markdownify }}</div>
</div>
</div> \ No newline at end of file