在 Github 的表格中使用降价图标?
Using markdown icons within tables in Github?
我希望在 github README.md 文件的 table 单元格中显示复选标记。问题是,:white_check_mark:
没有采用白色复选标记的形式,而是将原始文字文本留在 table 中。
这是 table
的完整降价
| Property | Type | Null | Description |
| -------- | ---- | ---- | ----------- |
| subject | string | | Message subject |
| body_excerpt | string | | Short excerpt of the message body |
| to | list | :white_check_mark: | Names and emails of the message recipients |
| cc | list | :white_check_mark: | Names and emails of the message recipients who were CC'd |
知道为什么这个图标可能没有出现吗?
谢谢
编辑:上面的例子实际上显示了白色的复选标记。为了更好地参考,请查看 this repo
中的 README.md
TL;DR
您的 table 格式正确。问题在别处。
更详细的回答
嗯。我已将 Pull Request 发送到您的仓库,其中 "fixes" 勾选标记的呈现。但是,修复是完全无关的。我刚刚从自述文件中删除了一些 json。
json 的删除部分似乎无害。我猜这可能与您的 README 内容无关,而是与 GitHub 所依赖的渲染引擎有关。
我强烈建议您将这种奇怪的行为报告给支持@github.com(也许链接到演示 潜在 渲染问题的 PR)。
我希望在 github README.md 文件的 table 单元格中显示复选标记。问题是,:white_check_mark:
没有采用白色复选标记的形式,而是将原始文字文本留在 table 中。
这是 table
的完整降价| Property | Type | Null | Description |
| -------- | ---- | ---- | ----------- |
| subject | string | | Message subject |
| body_excerpt | string | | Short excerpt of the message body |
| to | list | :white_check_mark: | Names and emails of the message recipients |
| cc | list | :white_check_mark: | Names and emails of the message recipients who were CC'd |
知道为什么这个图标可能没有出现吗?
谢谢
编辑:上面的例子实际上显示了白色的复选标记。为了更好地参考,请查看 this repo
中的 README.mdTL;DR
您的 table 格式正确。问题在别处。
更详细的回答
嗯。我已将 Pull Request 发送到您的仓库,其中 "fixes" 勾选标记的呈现。但是,修复是完全无关的。我刚刚从自述文件中删除了一些 json。
json 的删除部分似乎无害。我猜这可能与您的 README 内容无关,而是与 GitHub 所依赖的渲染引擎有关。
我强烈建议您将这种奇怪的行为报告给支持@github.com(也许链接到演示 潜在 渲染问题的 PR)。