Html 如何在降价表中编写列表?

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/19950648/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-08-29 15:16:51  来源:igfitidea点击:

How to write lists inside a markdown table?

htmlmarkdowngithub-flavored-markdown

提问by Gabriel Petrovay

Can one create a list (bullets, numbered or not) inside a markdown table.

可以在降价表中创建一个列表(项目符号,编号与否)。

A table looks like this:

一个表看起来像这样:

| Tables        | Are           | Cool  |
| ------------- |:-------------:| -----:|
| col 3 is      | right-aligned | 00 |
| col 2 is      | centered      |    |
| zebra stripes | are neat      |     |

A list looks like this:

列表如下所示:

* one
* two
* three

Can I merge them somehow?

我可以以某种方式合并它们吗?

回答by Ionic? Biz?u

Yes, you can merge them using HTML. When I create tables in .mdfiles from Github, I always like to use HTML code instead of markdown.

是的,您可以使用 HTML 合并它们。当我在.mdGithub 的文件中创建表格时,我总是喜欢使用 HTML 代码而不是 Markdown。

Github Flavored Markdownsupports basic HTML in .mdfile. So this would be the answer:

Github Flavored Markdown支持.md文件中的基本 HTML 。所以这将是答案:

Markdown mixed with HTML:

Markdown 与 HTML 混合:

| Tables        | Are           | Cool  |
| ------------- |:-------------:| -----:|
| col 3 is      | right-aligned | 00 |
| col 2 is      | centered      |    |
| zebra stripes | are neat      |     |
| <ul><li>item1</li><li>item2</li></ul>| See the list | from the first column|

Or pure HTML:

或纯 HTML:

<table>
  <tbody>
    <tr>
      <th>Tables</th>
      <th align="center">Are</th>
      <th align="right">Cool</th>
    </tr>
    <tr>
      <td>col 3 is</td>
      <td align="center">right-aligned</td>
      <td align="right">00</td>
    </tr>
    <tr>
      <td>col 2 is</td>
      <td align="center">centered</td>
      <td align="right"></td>
    </tr>
    <tr>
      <td>zebra stripes</td>
      <td align="center">are neat</td>
      <td align="right"></td>
    </tr>
    <tr>
      <td>
        <ul>
          <li>item1</li>
          <li>item2</li>
        </ul>
      </td>
      <td align="center">See the list</td>
      <td align="right">from the first column</td>
    </tr>
  </tbody>
</table>

This is how it looks on Github:

这是 Github 上的样子:

回答by Amio.io

If you want a no-bullet list (or any other non-standard usage) or more lines in a cell use <br />

如果您想要一个无项目符号列表(或任何其他非标准用法)或单元格中的更多行,请使用 <br />

| Event         | Platform      | Description |
| ------------- |-----------| -----:|
| `message_received`| `facebook-messenger`<br/>`skype`|

回答by VonC

Not that I know of, because all markdown references I am aware of, like this one, mention:

不是我所知道的,因为我所知道的所有降价参考,比如这个,提到:

Cell content must be on one line only

单元格内容只能在一行

You can try it with that Markdown Tables Generator(whose example looks like the one you mention in your question, so you may be aware of it already).

您可以使用Markdown Tables Generator(其示例看起来像您在问题中提到的示例,因此您可能已经意识到它)。

Pandoc

潘多克

If you are using Pandoc's markdown(which extendsJohn Gruber's markdown syntaxon which the GitHub Flavored Markdownis based) you can use either grid_tables:

如果您正在使用Pandoc 的降价(它扩展GitHub Flavored Markdown所基于的约翰格鲁伯的降价语法),您可以使用:grid_tables

+---------------+---------------+--------------------+
| Fruit         | Price         | Advantages         |
+===============+===============+====================+
| Bananas       | .34         | - built-in wrapper |
|               |               | - bright color     |
+---------------+---------------+--------------------+
| Oranges       | .10         | - cures scurvy     |
|               |               | - tasty            |
+---------------+---------------+--------------------+
+---------------+---------------+--------------------+
| Fruit         | Price         | Advantages         |
+===============+===============+====================+
| Bananas       | .34         | - built-in wrapper |
|               |               | - bright color     |
+---------------+---------------+--------------------+
| Oranges       | .10         | - cures scurvy     |
|               |               | - tasty            |
+---------------+---------------+--------------------+

or multiline_tables.

multiline_tables

-------------------------------------------------------------
 Centered   Default           Right Left
  Header    Aligned         Aligned Aligned
----------- ------- --------------- -------------------------
   First    row                12.0 Example of a row that
                                    spans multiple lines.

  Second    row                 5.0 Here's another one. Note
                                    the blank line between
                                    rows.
-------------------------------------------------------------
-------------------------------------------------------------
 Centered   Default           Right Left
  Header    Aligned         Aligned Aligned
----------- ------- --------------- -------------------------
   First    row                12.0 Example of a row that
                                    spans multiple lines.

  Second    row                 5.0 Here's another one. Note
                                    the blank line between
                                    rows.
-------------------------------------------------------------

回答by Chris Sewell

An alternative approach, which I've recently implemented, is to use the div-table pluginwith panflute.

我最近实施的另一种方法是使用带有panflutediv-table 插件

This creates a table from a set of fenced divs (standard in the pandocimplementation of markdown), in a similar layout to html:

这会从一组围栏的 div(markdown的pandoc实现中的标准)创建一个表格,其布局与 html 类似:

---
panflute-filters: [div-table]
panflute-path: 'panflute/docs/source'
---

::::: {.divtable}
:::: {.tcaption}
a caption here (optional), only the first paragraph is used.
::::
:::: {.thead}
[Header 1]{width=0.4 align=center}
[Header 2]{width=0.6 align=default}
::::
:::: {.trow}
::: {.tcell}

1. any
2. normal markdown
3. can go in a cell

:::
::: {.tcell}
![](https://pixabay.com/get/e832b60e2cf7043ed1584d05fb0938c9bd22ffd41cb2144894f9c57aae/bird-1771435_1280.png?attachment){width=50%}

some text
:::
::::
:::: {.trow bypara=true}
If bypara=true

Then each paragraph will be treated as a separate column
::::
any text outside a div will be ignored
:::::

Looks like:

好像:

enter image description here

在此处输入图片说明

回答by Diogo Gomes

If you use the html approach:

如果您使用 html 方法:

don't add blank lines

不要添加空行

Like this:

像这样:

<table>
    <tbody>

        <tr>
            <td>1</td>
            <td>2</td>
        </tr>

        <tr>
            <td>1</td>
            <td>2</td>
        </tr>

    </tbody>
</table>

the markup will break.

标记将中断。

Remove blank lines:

删除空行:

<table>
    <tbody>
        <tr>
            <td>1</td>
            <td>2</td>
        </tr>
        <tr>
            <td>1</td>
            <td>2</td>
        </tr>
    </tbody>
</table>

回答by VectorX

another solution , you can add <br>tag to your table

另一种解决方案,您可以<br>在表格中添加标签

    |Method name| Behavior |
    |--|--|
    | OnAwakeLogicController(); | Its called when MainLogicController is loaded into the memory , its also hold the following actions :- <br> 1. Checking Audio Settings <br>2. Initializing Level Controller|

enter image description here

在此处输入图片说明