File: table.xml

package info (click to toggle)
php-league-commonmark 2.7.1-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 8,264 kB
  • sloc: php: 20,396; xml: 1,988; ruby: 45; makefile: 21; javascript: 15
file content (100 lines) | stat: -rw-r--r-- 3,448 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<?xml version="1.0" encoding="UTF-8"?>
<document xmlns="http://commonmark.org/xml/1.0">
    <table>
        <table_section type="head">
            <table_row>
                <table_cell type="header" align="left">
                    <text>header 1</text>
                </table_cell>
                <table_cell type="header" align="center">
                    <text>header 2</text>
                </table_cell>
                <table_cell type="header" align="right">
                    <text>header 2</text>
                </table_cell>
            </table_row>
        </table_section>
        <table_section type="body">
            <table_row>
                <table_cell type="data" align="left">
                    <text>cell 1.1</text>
                </table_cell>
                <table_cell type="data" align="center">
                    <text>cell 1.2</text>
                </table_cell>
                <table_cell type="data" align="right">
                    <text>cell 1.3</text>
                </table_cell>
            </table_row>
            <table_row>
                <table_cell type="data" align="left">
                    <text>cell 2.1</text>
                </table_cell>
                <table_cell type="data" align="center">
                    <text>cell 2.2</text>
                </table_cell>
                <table_cell type="data" align="right">
                    <text>cell 2.3</text>
                </table_cell>
            </table_row>
        </table_section>
    </table>
    <table>
        <table_section type="head">
            <table_row>
                <table_cell type="header">
                    <emph>
                        <text>header</text>
                    </emph>
                    <text> 1</text>
                </table_cell>
                <table_cell type="header">
                    <strong>
                        <text>header 2</text>
                    </strong>
                </table_cell>
            </table_row>
        </table_section>
        <table_section type="body">
            <table_row>
                <table_cell type="data">
                    <emph>
                        <text>cell</text>
                    </emph>
                    <text> 1.1</text>
                </table_cell>
                <table_cell type="data">
                    <strong>
                        <text>cell</text>
                    </strong>
                    <text> 1.2</text>
                </table_cell>
            </table_row>
            <table_row>
                <table_cell type="data">
                    <text>`</text>
                </table_cell>
                <table_cell type="data">
                    <text>` 2.1</text>
                </table_cell>
            </table_row>
            <table_row>
                <table_cell type="data">
                    <code>|</code>
                    <text> 2.1</text>
                </table_cell>
                <table_cell type="data">
                    <link destination="/" title="">
                        <text>link</text>
                    </link>
                </table_cell>
            </table_row>
            <table_row>
                <table_cell type="data">
                    <text>_cell_ 4.1</text>
                </table_cell>
                <table_cell type="data" />
            </table_row>
        </table_section>
    </table>
</document>