有三个使用WikiText标记语言编写的表的例子,没有任何额外的文档?



假设我们想在维基百科这样的网站上创建一个表

什么源代码会产生如下所示的表?:

tbody> <<tr>
水果 非水果蔬菜
CucumberFruitSpinachLeavesandStems
TomatoFruitSpinachLeavesandStems
ZucchiniFruitCeleryLeavesandStems
AppleFruitPotatoRoot
OrangeFruitOnionRoot
CarrotRoots

随你便:

{| class="wikitable"
|+ Title Goes Here.
|-
! Fruit
! NonFruitVegetable
|-
| CucumberFruit
| SpinachLeavesandStems
|-
| TomatoFruit
| SpinachLeavesandStems
|-
| ZucchiniFruit
| CeleryLeavesandStems
|-
| AppleFruit
| PotatoRoot
|-
| OrangeFruit
| OnionRoot
|-
|
| CarrotRoots
|}

在mediawiki.org上试试。

解释(如果你不想读就跳过它):

tbody> <<tr>
wikittextHTML等价(大致)
{|/|}<table></table>
{| class="wikitable"<table class="wikitable">
|+<caption></caption>
|+ Foobar<caption>Foobar</caption>
|-<tr></tr>
|- class="row"<tr class="row"></tr>
|<td></td>
| rowspan="2"<td rowspan="2"></td>

相关内容

  • 没有找到相关文章

最新更新