降价中的嵌套表格?

时间:2017-04-24 15:19:46

标签: markdown

我需要像这样在markdown中创建一个类似嵌套的表:

enter image description here

我该怎么做?

1 个答案:

答案 0 :(得分:0)

@Waylan是正确的,您可以将HTML(例如,使用Markdown生成的表的HTML)粘贴到Markdown表的单元格中。

这需要做一些工作,因为您需要检查渲染的生成的HTML(幸运的是,像Firefox这样的浏览器允许您检查渲染的HTML的源)。

另一个缺点是结果可能无法读取,例如:

|                |ASCII                          |HTML                         |
|----------------|-------------------------------|-----------------------------|
|Single backticks|`'Isn't this fun?'`            |'Isn't this fun?'            |
|Quotes          |`"Isn't this fun?"`            |<table>  <thead>  <tr>  <th></th>  <th>ASCII</th>  <th>HTML</th>  </tr>  </thead>  <tbody>  <tr>  <td>Single backticks</td>  <td><code>'Isn't this fun?'</code></td>  <td>‘Isn’t this fun?’</td>  </tr>  <tr>  <td>Quotes</td>  <td><code>"Isn't this fun?"</code></td>  <td>“Isn’t this fun?”</td>  </tr>  <tr>  <td>Dashes</td>  <td><code>-- is en-dash, --- is em-dash</code></td>  <td>– is en-dash, — is em-dash</td>  </tr>  </tbody>  </table>      |
|Dashes          |`-- is en-dash, --- is em-dash`|-- is en-dash, --- is em-dash|

愿意:

enter image description here

https://stackedit.io编辑器中。

最后,您的示例如下所示:

|   |  Returned Value |
|--| -----------------|
| Version V2 |     <table>  <thead>  <tr>  Z-value</th>  <th>06</th>  </tr>  </thead>  <tbody>  <tr>  <td>Protocol</td>  <td>04 05</td>  </tr>  <tr>  <td>Protocol Sub</td>  <td>02</td>  </tr>  <tr>  <td>Application</td>  <td>11</td>  </tr>  <tr>  <td>Application Sub</td>  <td>00</td>  </tr>  </tbody>  </table>              |

并渲染为:

enter image description here

这可能不值得。 Markdown不适合这样做(可以使用LaTeX,如果可以的话,也可以使用LaTeX嵌入式Markdown)