asciidoc
[cols="8<,7>,10>",options="header"]
|====
| text | int | float
| Cell 1 | 100 | 0.333333
| Cell 2 | -25 | 0.001
| Cell 3 | 0 | 0
|====
double_grid
╔════════╦═══════╦══════════╗
║ text ║ int ║ float ║
╠════════╬═══════╬══════════╣
║ Cell 1 ║ 100 ║ 0.333333 ║
╠════════╬═══════╬══════════╣
║ Cell 2 ║ -25 ║ 0.001 ║
╠════════╬═══════╬══════════╣
║ Cell 3 ║ 0 ║ 0 ║
╚════════╩═══════╩══════════╝
double_outline
╔════════╦═══════╦══════════╗
║ text ║ int ║ float ║
╠════════╬═══════╬══════════╣
║ Cell 1 ║ 100 ║ 0.333333 ║
║ Cell 2 ║ -25 ║ 0.001 ║
║ Cell 3 ║ 0 ║ 0 ║
╚════════╩═══════╩══════════╝
fancy_grid
╒════════╤═══════╤══════════╕
│ text │ int │ float │
╞════════╪═══════╪══════════╡
│ Cell 1 │ 100 │ 0.333333 │
├────────┼───────┼──────────┤
│ Cell 2 │ -25 │ 0.001 │
├────────┼───────┼──────────┤
│ Cell 3 │ 0 │ 0 │
╘════════╧═══════╧══════════╛
fancy_outline
╒════════╤═══════╤══════════╕
│ text │ int │ float │
╞════════╪═══════╪══════════╡
│ Cell 1 │ 100 │ 0.333333 │
│ Cell 2 │ -25 │ 0.001 │
│ Cell 3 │ 0 │ 0 │
╘════════╧═══════╧══════════╛
github
| text | int | float |
|--------|-------|----------|
| Cell 1 | 100 | 0.333333 |
| Cell 2 | -25 | 0.001 |
| Cell 3 | 0 | 0 |
grid
+--------+-------+----------+
| text | int | float |
+========+=======+==========+
| Cell 1 | 100 | 0.333333 |
+--------+-------+----------+
| Cell 2 | -25 | 0.001 |
+--------+-------+----------+
| Cell 3 | 0 | 0 |
+--------+-------+----------+
heavy_grid
┏━━━━━━━━┳━━━━━━━┳━━━━━━━━━━┓
┃ text ┃ int ┃ float ┃
┣━━━━━━━━╋━━━━━━━╋━━━━━━━━━━┫
┃ Cell 1 ┃ 100 ┃ 0.333333 ┃
┣━━━━━━━━╋━━━━━━━╋━━━━━━━━━━┫
┃ Cell 2 ┃ -25 ┃ 0.001 ┃
┣━━━━━━━━╋━━━━━━━╋━━━━━━━━━━┫
┃ Cell 3 ┃ 0 ┃ 0 ┃
┗━━━━━━━━┻━━━━━━━┻━━━━━━━━━━┛
heavy_outline
┏━━━━━━━━┳━━━━━━━┳━━━━━━━━━━┓
┃ text ┃ int ┃ float ┃
┣━━━━━━━━╋━━━━━━━╋━━━━━━━━━━┫
┃ Cell 1 ┃ 100 ┃ 0.333333 ┃
┃ Cell 2 ┃ -25 ┃ 0.001 ┃
┃ Cell 3 ┃ 0 ┃ 0 ┃
┗━━━━━━━━┻━━━━━━━┻━━━━━━━━━━┛
html
<table>
<thead>
<tr><th>text </th><th style="text-align: right;"> int</th><th style=
</thead>
<tbody>
<tr><td>Cell 1</td><td style="text-align: right;"> 100</td><td style=
<tr><td>Cell 2</td><td style="text-align: right;"> -25</td><td style=
<tr><td>Cell 3</td><td style="text-align: right;"> 0</td><td style=
</tbody>
</table>
jira
|| text || int || float ||
| Cell 1 | 100 | 0.333333 |
| Cell 2 | -25 | 0.001 |
| Cell 3 | 0 | 0 |
latex
\begin{tabular}{lrr}
\hline
text & int & float \\
\hline
Cell 1 & 100 & 0.333333 \\
Cell 2 & -25 & 0.001 \\
Cell 3 & 0 & 0 \\
\hline
\end{tabular}
latex_booktabs
\begin{tabular}{lrr}
\toprule
text & int & float \\
\midrule
Cell 1 & 100 & 0.333333 \\
Cell 2 & -25 & 0.001 \\
Cell 3 & 0 & 0 \\
\bottomrule
\end{tabular}
latex_longtable
\begin{longtable}{lrr}
\hline
text & int & float \\
\hline
\endhead
Cell 1 & 100 & 0.333333 \\
Cell 2 & -25 & 0.001 \\
Cell 3 & 0 & 0 \\
\hline
\end{longtable}
latex_raw
\begin{tabular}{lrr}
\hline
text & int & float \\
\hline
Cell 1 & 100 & 0.333333 \\
Cell 2 & -25 & 0.001 \\
Cell 3 & 0 & 0 \\
\hline
\end{tabular}
mediawiki
{| class="wikitable" style="text-align: left;"
|+ <!-- caption -->
|-
! text !! align="right"| int !! align="right"| float
|-
| Cell 1 || align="right"| 100 || align="right"| 0.333333
|-
| Cell 2 || align="right"| -25 || align="right"| 0.001
|-
| Cell 3 || align="right"| 0 || align="right"| 0
|}
mixed_grid
┍━━━━━━━━┯━━━━━━━┯━━━━━━━━━━┑
│ text │ int │ float │
┝━━━━━━━━┿━━━━━━━┿━━━━━━━━━━┥
│ Cell 1 │ 100 │ 0.333333 │
├────────┼───────┼──────────┤
│ Cell 2 │ -25 │ 0.001 │
├────────┼───────┼──────────┤
│ Cell 3 │ 0 │ 0 │
┕━━━━━━━━┷━━━━━━━┷━━━━━━━━━━┙
mixed_outline
┍━━━━━━━━┯━━━━━━━┯━━━━━━━━━━┑
│ text │ int │ float │
┝━━━━━━━━┿━━━━━━━┿━━━━━━━━━━┥
│ Cell 1 │ 100 │ 0.333333 │
│ Cell 2 │ -25 │ 0.001 │
│ Cell 3 │ 0 │ 0 │
┕━━━━━━━━┷━━━━━━━┷━━━━━━━━━━┙
moinmoin
|| ''' text ''' ||<style="text-align: right;"> ''' int ''' ||<styl
|| Cell 1 ||<style="text-align: right;"> 100 ||<style="text-alig
|| Cell 2 ||<style="text-align: right;"> -25 ||<style="text-alig
|| Cell 3 ||<style="text-align: right;"> 0 ||<style="text-alig
orgtbl
| text | int | float |
|--------+-------+----------|
| Cell 1 | 100 | 0.333333 |
| Cell 2 | -25 | 0.001 |
| Cell 3 | 0 | 0 |
outline
+--------+-------+----------+
| text | int | float |
+========+=======+==========+
| Cell 1 | 100 | 0.333333 |
| Cell 2 | -25 | 0.001 |
| Cell 3 | 0 | 0 |
+--------+-------+----------+
pipe
| text | int | float |
|:-------|------:|---------:|
| Cell 1 | 100 | 0.333333 |
| Cell 2 | -25 | 0.001 |
| Cell 3 | 0 | 0 |
plain
text int float
Cell 1 100 0.333333
Cell 2 -25 0.001
Cell 3 0 0
presto
text | int | float
--------+-------+----------
Cell 1 | 100 | 0.333333
Cell 2 | -25 | 0.001
Cell 3 | 0 | 0
pretty
+--------+-----+--------------------+
| text | int | float |
+--------+-----+--------------------+
| Cell 1 | 100 | 0.3333333333333333 |
| Cell 2 | -25 | 0.001 |
| Cell 3 | 0 | 0 |
+--------+-----+--------------------+
psql
+--------+-------+----------+
| text | int | float |
|--------+-------+----------|
| Cell 1 | 100 | 0.333333 |
| Cell 2 | -25 | 0.001 |
| Cell 3 | 0 | 0 |
+--------+-------+----------+
rounded_grid
╭────────┬───────┬──────────╮
│ text │ int │ float │
├────────┼───────┼──────────┤
│ Cell 1 │ 100 │ 0.333333 │
├────────┼───────┼──────────┤
│ Cell 2 │ -25 │ 0.001 │
├────────┼───────┼──────────┤
│ Cell 3 │ 0 │ 0 │
╰────────┴───────┴──────────╯
rounded_outline
╭────────┬───────┬──────────╮
│ text │ int │ float │
├────────┼───────┼──────────┤
│ Cell 1 │ 100 │ 0.333333 │
│ Cell 2 │ -25 │ 0.001 │
│ Cell 3 │ 0 │ 0 │
╰────────┴───────┴──────────╯
rst
====== ===== ========
text int float
====== ===== ========
Cell 1 100 0.333333
Cell 2 -25 0.001
Cell 3 0 0
====== ===== ========
simple
text int float
------ ----- --------
Cell 1 100 0.333333
Cell 2 -25 0.001
Cell 3 0 0
simple_grid
┌────────┬───────┬──────────┐
│ text │ int │ float │
├────────┼───────┼──────────┤
│ Cell 1 │ 100 │ 0.333333 │
├────────┼───────┼──────────┤
│ Cell 2 │ -25 │ 0.001 │
├────────┼───────┼──────────┤
│ Cell 3 │ 0 │ 0 │
└────────┴───────┴──────────┘
simple_outline
┌────────┬───────┬──────────┐
│ text │ int │ float │
├────────┼───────┼──────────┤
│ Cell 1 │ 100 │ 0.333333 │
│ Cell 2 │ -25 │ 0.001 │
│ Cell 3 │ 0 │ 0 │
└────────┴───────┴──────────┘
textile
|_. text |_. int |_. float |
|<. Cell 1 |>. 100 |>. 0.333333 |
|<. Cell 2 |>. -25 |>. 0.001 |
|<. Cell 3 |>. 0 |>. 0 |
tsv
text int float
Cell 1 1000.333333
Cell 2 -250.001
Cell 3 00
unsafehtml
<table>
<thead>
<tr><th>text </th><th style="text-align: right;"> int</th><th style=
</thead>
<tbody>
<tr><td>Cell 1</td><td style="text-align: right;"> 100</td><td style=
<tr><td>Cell 2</td><td style="text-align: right;"> -25</td><td style=
<tr><td>Cell 3</td><td style="text-align: right;"> 0</td><td style=
</tbody>
</table>
youtrack
|| text || int || float ||
| Cell 1 | 100 | 0.333333 |
| Cell 2 | -25 | 0.001 |
| Cell 3 | 0 | 0 |