Skip to content

Commit

Permalink
Fix #63: Shortend anchors for FAQ might be to short
Browse files Browse the repository at this point in the history
  • Loading branch information
SammysHP committed May 18, 2015
1 parent 3d2cd35 commit 34f6788
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions faq.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ <h1>FAQ - Frequently Asked Questions</h1>
<li>{{ category.title }}
<ul>
{% for item in category.items %}
<li><a href="#faq.{{ item.title | escape | remove: ' ' | truncate: 10, '' }}">{{ item.title }}</a></li>
<li><a href="#faq.{{ item.id }}">{{ item.title }}</a></li>
{% endfor %}
</ul>
</li>
Expand All @@ -22,7 +22,7 @@ <h2>{{ category.title }}</h2>

{% for item in category.items %}
<div class="faqitem">
<h3 id="faq.{{ item.title | escape | remove: ' ' | truncate: 10, '' }}">{{ item.title }}</h3>
<h3 id="faq.{{ item.id }}">{{ item.title }}</h3>
{{ item.content | markdownify }}
</div>
{% endfor %}
Expand Down

0 comments on commit 34f6788

Please sign in to comment.