Skip to content

Commit d504b07

Browse files
committed
Simplify the products-used component to remove images
1 parent b269e49 commit d504b07

File tree

1 file changed

+5
-12
lines changed

1 file changed

+5
-12
lines changed

docs/CommercialSupportComponent.jl

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -32,18 +32,11 @@ PRODUCTNAME_IMAGE_LINK = [
3232

3333
function MultiDocumenter.render(c::ProductsUsedComponent, doc, thispage, prettyurls)
3434
strings = [MultiDocumenter.@htl """
35-
<tr>
36-
<td style="vertical-align: middle;">
37-
<a href=$(product.link)>
38-
<img src=$(product.logo) alt=$(product.product) height='30px' style="vertical-align: middle; height: 30px;"/>
39-
</a>
40-
</td>
41-
<td style="vertical-align: middle; text-align: left;">
42-
<a href=$(product.link) class="nav-link nav-item">
43-
$(product.product)
44-
</a>
45-
</td>
46-
</tr>
35+
<li>
36+
<a href=$(product.link) class="nav-link nav-item">
37+
$(product.product)
38+
</a>
39+
</li>
4740
""" for product in PRODUCTNAME_IMAGE_LINK]
4841

4942
return MultiDocumenter.@htl """

0 commit comments

Comments
 (0)