1 // PERMUTE_ARGS:
2 // REQUIRED_ARGS: -D -Dd${RESULTS_DIR}/compilable -o- -preview=markdown
3 // POST_SCRIPT: compilable/extra-files/ddocAny-postscript.sh
4 
5 /*
6 TEST_OUTPUT:
7 ----
8 ----
9 */
10 
11 /++
12 # Tables
13 
14 | Rounding mode | rndint(4.5) | rndint(5.5) | rndint(-4.5) | Notes |
15 | ------------- | ----------: | ----------: | -----------: | ----- |
16 | Round to nearest | 4 | 6 | -4 | Ties round to an even number |
17 | Round down | 4 | 5 | -5 |   |
18 | Round up | 5 | 6 | -4 |   |
19 | Round to zero | 4 | 5 | -4 |   |
20 
21     this|that
22     ----|----
23     cell|cell<br>sell
24 
25 | abc | def |
26 | --- | --- |
27 | bar |
28 | *bar* | baz | boo |
29 
30 > | quote |
31 > | ----- |
32 > | table |
33 
34 * | list |
35   | ---- |
36   | table |
37 
38 | default | left | center | right |
39 | --- | :-- | :--: | --: |
40 
41 Look Ma, a table without a body!
42 
43 | not | a | table |
44 | -- |
45 | wrong number of header columns |
46 +/
47 module test.compilable.ddoc_markdown_tables;