I'm writing some documentation and I'll need to display some icons in a table on a markdown file.
For more maintainability I used a html array structure.
And the icons I use come from this library.
Example of my code:
<table>
<thead>
<tr>
<th>icon</th>
<th>Button name or features</th>
<th>Name of the icon</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<svg style="width:24px;height:24px" viewBox="0 0 24 24">
<path fill="#000000"
d="M6,17C6,15 10,13.9 12,13.9C14,13.9 18,15 18,17V18H6M15,9A3,3 0 0,1 12,12A3,3 0 0,1
9,9A3,3 0 0,1 12,6A3,3 0 0,1 15,9M3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V5A2,2 0 0,0
19,3H5C3.89,3 3,3.9 3,5Z" />
</svg>
</td>
<td>User information</td>
<td>account-box</td>
</tr>
</tbody>
<table>
Thanks in advance!