如何在gitlab wiki上创建表?

时间:2013-07-11 22:01:20

标签: markdown gitlab

如何在gitlab wiki上创建表?

它使用github风味降价,以及这种降价标记support tables,但我无法使下面的例子有效:

冒号可用于对齐列。

| Tables        | Are           | Cool  |
| ------------- |:-------------:| -----:|
| col 3 is      | right-aligned | $1600 |
| col 2 is      | centered      |   $12 |
| zebra stripes | are neat      |    $1 |

The outer pipes (|) are optional, and you don't need to make the raw Markdown line up prettily. You can also use inline Markdown.

Markdown | Less | Pretty
--- | --- | ---
*Still* | `renders` | **nicely**
1 | 2 | 3

是否有激活表格的技巧?

2 个答案:

答案 0 :(得分:10)

似乎仍然如此,Issue 3651issue 1238中所述,即使Flavored Markdown is supported

这不起作用:

| parameters  | desc                 |
| :---------  | :------------------- |
| -w | --word | Parameter for Word   |

关于这个特定错误的contributions are welcome

但是,AJNeufeld建议(2016年)in the comments

  

您需要使用|实体代码来获取“-w”和“--word”之间的垂直管道,因此它在呈现时显示为"-w | --word“表。
  即,完整的行应该是:

| -w | --word | Parameter for Word |

答案 1 :(得分:0)

您还可以使用以下过程在Gitlab Wiki中添加具有所需列/行的表。

| column1 | column2 | column3 |
|---|---|---|
| data_ column1 | data_ column2 | data_ column3 |