erikw/jekyll-glossary_tooltip

[Feature Request] Tag to include all glossary terms

badosu opened this issue · 4 comments

It would be nice if it was possible to include all glossary terms into a page (with their source links) for reference. In particular this would benefit projects with very specific terminology that require a Glossary page.

Ok, it's relatively trivial to do this with the plugin for liquify filter.

erikw commented

This is a good idea!

How do you mean with liquify filter?

https://github.com/gemfarmer/jekyll-liquify and something like:

<dl>
{% for item in ordered_items %}
  <dt><a href="{{item.url | liquify}}" target="_blank">{{item.term}}</a></dt>
  <dd>{{item.definition}}</dd>
{% endfor %}
</dl>