【发布时间】:2016-09-02 00:20:46
【问题描述】:
我有一个 HTML 表格,我正试图通过 webhook 发布到 Slack。
有没有办法将 HTML 表格发布到 Slack?
这是 HTML 代码:
<!DOCTYPE html>
<html>
<head>
<title>HTML Tables</title>
</head>
<body>
<table border="1">
<tr>
<td>Row 1, Column 1</td>
<td>Row 1, Column 2</td>
</tr>
<tr>
<td>Row 2, Column 1</td>
<td>Row 2, Column 2</td>
</tr>
</table>
</body>
</html>
【问题讨论】: