Skip to content

Commit

Permalink
fix tables on main page
Browse files Browse the repository at this point in the history
  • Loading branch information
sierra-moxon committed Mar 8, 2024
1 parent 0ba2f18 commit 77e6132
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/doc-templates/index.md.jinja2
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@ Each information resource has an identifier, a short description, and an URL to
## Classes

| Class | Description |
{% for c in schemaview.all_classes(ordered_by="lexical").values()|sort(attribute='name') -%}
| --- | --- |
{% for c in schemaview.all_classes(ordered_by="lexical").values()|sort(attribute='name') -%}
| {{gen.link(c)}} | {{c.description}} |
{% endfor %}

## Slots

| Property | Description |
{% for np in schemaview.all_slots(ordered_by="lexical").values()|sort(attribute='name') -%}
| --- | --- |
{% for np in schemaview.all_slots(ordered_by="lexical").values()|sort(attribute='name') -%}
| {{gen.link(np)}} | {{np.description}} |
{% endfor %}

Expand Down

0 comments on commit 77e6132

Please sign in to comment.