【发布时间】:2020-01-08 21:47:57
【问题描述】:
我正在编写一些文档,我需要在 markdown 文件的表格中显示一些图标。
为了提高可维护性,我使用了 html 数组结构。
而我使用的图标来自这个library。
我的代码示例:
<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>
提前致谢!
【问题讨论】:
标签: html github icons markdown