Browse Source

Added notes on tables

Alois Mahdal 11 years ago
parent
commit
1821fc0e6c
1 changed files with 59 additions and 0 deletions
  1. 59
    0
      notes/table.md

+ 59
- 0
notes/table.md View File

@@ -0,0 +1,59 @@
1
+# Table #
2
+
3
+## Spanning ##
4
+
5
+    +-------+-------+-------+
6
+    | colsp |       |       |
7
+    | an    +-------+-------+
8
+    |       |       |       |
9
+    +-------+-------+-------+
10
+    |       |       |       |
11
+    +-------+-------+-------+
12
+    |       | rowspan       |
13
+    +-------+-------+-------+
14
+    |       |       |       |
15
+    +-------+-------+-------+
16
+    | colspan and   |       |
17
+    | rowspan       +-------+
18
+    |               |       |
19
+    +-------+-------+-------+
20
+    |       |       |       |
21
+    +-------+-------+-------+
22
+
23
+
24
+## Header ##
25
+
26
+    +-------+-------+-------+
27
+    | test# |v    A |v    B |
28
+    +-------+-------+-------+
29
+    |>    1 |  pass |  pass |
30
+    +-------+-------+-------+
31
+    |>    2 |  fail |  pass |
32
+    +-------+-------+-------+
33
+    |>    3 |  fail |  pass |
34
+    +-------+-------+-------+
35
+    |>    4 |  pass |  fail |
36
+    +-------+-------+-------+
37
+    |>    5 |  fail |  fail |
38
+    +-------+-------+-------+
39
+    |>    6 |  pass |  pass |
40
+    +-------+-------+-------+
41
+    |>    7 |  fail |  fail |
42
+    +-------+-------+-------+
43
+
44
+      test# |     A |     B |
45
+    --------+-------+-------+
46
+          1 |  pass |  pass |
47
+    --------+-------+-------+
48
+          2 |  fail |  pass |
49
+    --------+-------+-------+
50
+          3 |  fail |  pass |
51
+    --------+-------+-------+
52
+          4 |  pass |  fail |
53
+    --------+-------+-------+
54
+          5 |  fail |  fail |
55
+    --------+-------+-------+
56
+          6 |  pass |  pass |
57
+    --------+-------+-------+
58
+          7 |  fail |  fail |
59
+    --------+-------+-------+