</nav>
{% endexample %}
-You can optionally swap out active or disabled anchors for `<span>`, or omit the anchor in the case of the previous/next arrows, to remove click functionality while retaining intended styles.
+You can optionally swap out active or disabled anchors for `<span>`, or omit the anchor in the case of the prev/next arrows, to remove click functionality while retaining intended styles.
{% highlight html %}
<nav>
{% example html %}
<nav>
<ul class="pager">
- <li class="previous"><a href="#">Older</a></li>
- <li class="next"><a href="#">Newer</a></li>
+ <li class="pager-prev"><a href="#">Older</a></li>
+ <li class="pager-next"><a href="#">Newer</a></li>
</ul>
</nav>
{% endexample %}
{% highlight html %}
<nav>
<ul class="pager">
- <li class="previous disabled"><a href="#">Older</a></li>
- <li class="next"><a href="#">Newer</a></li>
+ <li class="pager-prev disabled"><a href="#">Older</a></li>
+ <li class="pager-next"><a href="#">Newer</a></li>
</ul>
</nav>
{% endhighlight %}