Skip to content

Commit 198431c

Browse files
authored
Update collection table include (OWASP#112)
Signed-off-by: kingthorin <kingthorin@users.noreply.github.com>
1 parent e773054 commit 198431c

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

_includes/collection_table.html

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@
99
{% endif %}
1010
<style>
1111
ul { padding: 5px; }
12+
td { word-wrap: break-word; }
13+
.refnote { font-size: smaller; }
14+
}
1215
</style>
1316

1417
<table style="font-size: 16px">
@@ -33,11 +36,14 @@
3336
<img alt="GitHub contributors" src="https://img.shields.io/github/contributors/{{ app.badge }}">
3437
{% endif %}
3538
</td>
36-
<td nowrap="nowrap">
39+
<td>
3740
{% if app.references %}
3841
<ul>
3942
{% for ref in app.references %}
40-
<li> <a href="{{ ref.url }}">{{ ref.name | capitalize }}</a> </li>
43+
<li> <a href="{{ ref.url }}">{{ ref.name | capitalize }} - {{ref.summary}}</a> </li>
44+
{% if ref.note %}
45+
<span class="refnote">{{ ref.note }}</span>
46+
{% endif %}
4147
{% endfor %}
4248
</ul>
4349
{% endif %}

0 commit comments

Comments
 (0)