forked from python-openxml/cxml
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcxml2XML.txt
More file actions
99 lines (80 loc) · 2.34 KB
/
cxml2XML.txt
File metadata and controls
99 lines (80 loc) · 2.34 KB
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
<foobar/>
<w:rPr xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"/>
<w:rPr xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"/>
<w:rPr xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" a="b"/>
<w:rPr xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" w:b="on"/>
<w:rPr xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" w:b="8,7"/>
<w:rPr xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" w:b="on"/>
<w:rPr xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" w:val="-48.7" b="c"/>
<foo>
<bar/>
</foo>
<foo xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main">
<w:bar/>
</foo>
<foo>
<w:bar xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"/>
</foo>
<foo>
<bar/>
<baz/>
</foo>
<foo>
<bar>
<baz/>
</bar>
<bar/>
</foo>
<foo>
<bar/>
<bar>
<baz/>
</bar>
<bar/>
</foo>
<foo>
<bar>
<baz/>
<baz/>
</bar>
<bar/>
</foo>
<foo>bar</foo>
<foo a="b"> ba r </foo>
<w:rPr xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" w:val="8,7">
<w:r r:id="1">foobar</w:r>
<w:r r:id="3"/>
</w:rPr>
<c:barChart xmlns:c="http://schemas.openxmlformats.org/drawingml/2006/chart">
<c:ser>
<c:cat>
<c:strRef>
<c:strCache>
<c:pt idx="1">
<c:v>bar</c:v>
</c:pt>
<c:pt idx="0">
<c:v>foo</c:v>
</c:pt>
<c:pt idx="2">
<c:v>baz</c:v>
</c:pt>
</c:strCache>
</c:strRef>
</c:cat>
</c:ser>
</c:barChart>
<wp:inline xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main" xmlns:pic="http://schemas.openxmlformats.org/drawingml/2006/picture">
<wp:extent cx="333" cy="666"/>
<a:graphic>
<a:graphicData>
<pic:pic>
<pic:spPr>
<a:xfrm>
<a:ext cx="333" cy="666"/>
</a:xfrm>
</pic:spPr>
</pic:pic>
</a:graphicData>
</a:graphic>
</wp:inline>