是否可以在 Markdown 中创建没有标题的表格?
HTML 看起来像这样:
<table>
<tr>
<td>Key 1</td>
<td>Value 1</td>
</tr>
<tr>
<td>Key 2</td>
<td>Value 2</td>
</tr>
</table>
是否可以在 Markdown 中创建没有标题的表格?
HTML 看起来像这样:
<table>
<tr>
<td>Key 1</td>
<td>Value 1</td>
</tr>
<tr>
<td>Key 2</td>
<td>Value 2</td>
</tr>
</table>
大多数 Markdown 解析器不支持没有标题的表格。这意味着标题的分隔线是强制性的。
PHP Markdown Extra “第二行包含标题和内容之间的强制分隔线”
RDiscount 使用 PHP Markdown Extra 语法。
simple_tables
和multiline_tables
扩展支持无标题表)但是,如果您能够更改 HTML 输出的 CSS,则可以利用:empty
伪类来隐藏一个空标题并使其看起来根本没有标题。
如果您不介意将其留空而浪费一行,请考虑以下 hack(这是一个 hack,仅当您不喜欢添加任何其他插件时才使用它)。
| | |
|---|---|
|__Bold Key__| Value1 |
| Normal Key | Value2 |
要查看上述内容的外观,请复制以上内容并访问https://stackedit.io/app
它与GitLab / GitHub的Markdown实现一起工作。
不幸的是,许多建议不适用于所有 Markdown 查看器/编辑器,例如流行的Markdown Viewer Chrome 扩展,但它们确实适用于iA Writer。
似乎在这两个流行程序中都有效(并且可能适用于您的特定应用程序)是使用HTML comment blocks ('<!-- -->')
:
| <!-- --> | <!-- --> |
|-------------|-------------|
| Foo | Bar |
就像前面提到的一些建议一样,这确实会在您的 Markdown 查看器/编辑器中添加一个空的标题行。在 iA Writer 中,它在美学上足够小,不会妨碍我太多。
我通过使用一个空链接来使用 Bitbucket 的 Markdown:
[]() |
------|------
Row 1 | row 2
至少对于GitHub Flavored Markdown,您可以通过使用常规或格式将所有非标题行条目加粗来产生错觉:__
**
|Regular | text | in header | turns bold |
|-|-|-|-|
| __So__ | __bold__ | __all__ | __table entries__ |
| __and__ | __it looks__ | __like a__ | __"headerless table"__ |
以下内容在 GitHub 中对我很有效。第一行不再是粗体,因为它不是标题:
<table align="center">
<tr>
<td align="center"><img src="docs/img1.png?raw=true" alt="some text"></td>
<td align="center">Some other text</td>
<td align="center">More text</td>
</tr>
<tr>
<td align="center"><img src="docs/img2.png?raw=true" alt="some text"></td>
<td align="center">Some other text 2</td>
<td align="center">More text 2</td>
</tr>
</table>
在此处检查没有标题的示例 HTML 表格。
如果您可以添加以下 CSS,则可以隐藏标题:
<style>
th {
display: none;
}
</style>
这有点笨拙,并且不区分表格,但它可能适用于简单的任务。
更新
HTML 输出因 Markdown 编辑器而异,但如果表格包含一个thead
元素,您可以更具体地定位空标题单元格:
thead th:empty {
border: thin solid red !important;
display: none;
}
如果您的标题行不包含可见内容,则此方法有效。酒吧之间的空间是好的。
$ cat foo.md
Key 1 | Value 1
Key 2 | Value 2
$ kramdown foo.md
<table>
<tbody>
<tr>
<td>Key 1</td>
<td>Value 1</td>
</tr>
<tr>
<td>Key 2</td>
<td>Value 2</td>
</tr>
</tbody>
</table>
我<span>
在第一列标题中使用:
<span> |
--- | ---
Value | Value
Value | Value
它创建一个带边框的空标题,但大小为 1/2。
在 GitHub 问题编辑器中有效的是
|
------ | ---
Foo | Bar
但它确实显示了一个空标题