island205/h2m

无法正确的处理table

htfei opened this issue · 2 comments

htfei commented

2017年9月10日 22:22:00更新
markdown支持html语法,可以直接把table拿过来用,不需要转化。建议遇到table不转化。

meta The meta object matches the HTTP response message:
  • status: the 3-digit HTTP Status-Code (e.g., 200)
  • msg: the HTTP Reason-Phrase (e.g., OK)
response API-specific results

如下:处理不正常

<table>
    <tbody>
    <tr>
     <th>meta</th>
     <td> The <code>meta</code> object matches the HTTP response message: 
      <ul class="tight">
       <li><code>status</code>: the 3-digit HTTP Status-Code (e.g., <code>200</code>)</li>
       <li><code>msg</code>: the HTTP Reason-Phrase (e.g., <code>OK</code>)</li>
      </ul></td>
    </tr>
    <tr>
     <th>response</th>
     <td>API-specific results</td>
    </tr>
    </tbody>
</table>

转化后为:

meta The `meta` object matches the HTTP response message: 
      
- `status`: the 3-digit HTTP Status-Code (e.g., `200`)
- `msg`: the HTTP Reason-Phrase (e.g., `OK`)

responseAPI-specific results

+1

好的,我尽快修复