Merge pull request #160 from ohanedan/master

turkish character bug fix on faq shortcode
This commit is contained in:
Somrat Sorkar 2021-03-07 08:31:56 +06:00 committed by GitHub
commit af14a0d07a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,11 +2,11 @@
<div class="card mb-4 rounded-0 shadow border-0"> <div class="card mb-4 rounded-0 shadow border-0">
<div class="card-header rounded-0 bg-white border p-0 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> <span>{{ .Get 0 | markdownify }}</span> <i class="ti-plus text-primary text-right"></i>
</a> </a>
</div> </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 class="card-body font-secondary text-color">{{ .Inner | markdownify }}</div>
</div> </div>
</div> </div>