diff --git a/build/terms.tmpl b/build/terms.tmpl index 9cf28f1..9f5fbc2 100644 --- a/build/terms.tmpl +++ b/build/terms.tmpl @@ -50,13 +50,14 @@ For more information on `UseWithIRI`, see [Section 2.5 of the RDF Guide](https:/ {% endif %}

+{% set examples = term.examples.split("; ") %} - +
{{ term.label }}
Identifier{{ term.iri }}
Definition{{ term.definition }}
Comments{{ term.comments }}
Examples{{ term.examples }}
Examples{% if examples | length == 1 %}{{ examples | first }}{% else %}
    {% for example in examples %}
  • {{ example }}
  • {% endfor %}
{% endif %}
{% endfor %} diff --git a/docs/_sass/_custom.scss b/docs/_sass/_custom.scss index 6124b00..a896db6 100644 --- a/docs/_sass/_custom.scss +++ b/docs/_sass/_custom.scss @@ -5,5 +5,9 @@ td:first-of-type { width: 120px; // Label column, long words will still push this wider } + + .list-group-item { + padding: 0.5rem 0; // Examples + } } }