@adobe/helix-md2docx 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/CODE_OF_CONDUCT.md +74 -0
- package/CONTRIBUTING.md +74 -0
- package/LICENSE.txt +264 -0
- package/README.md +33 -0
- package/package.json +70 -0
- package/src/cli/convert2docx.js +96 -0
- package/src/index.d.ts +13 -0
- package/src/index.js +13 -0
- package/src/mdast2docx/all.js +31 -0
- package/src/mdast2docx/default-numbering.js +79 -0
- package/src/mdast2docx/handlers/break.js +22 -0
- package/src/mdast2docx/handlers/characterStyle.js +29 -0
- package/src/mdast2docx/handlers/code.js +27 -0
- package/src/mdast2docx/handlers/heading.js +32 -0
- package/src/mdast2docx/handlers/html.js +35 -0
- package/src/mdast2docx/handlers/image.js +90 -0
- package/src/mdast2docx/handlers/index.js +56 -0
- package/src/mdast2docx/handlers/inlineCode.js +21 -0
- package/src/mdast2docx/handlers/link.js +63 -0
- package/src/mdast2docx/handlers/list.js +39 -0
- package/src/mdast2docx/handlers/listItem.js +16 -0
- package/src/mdast2docx/handlers/paragraph.js +52 -0
- package/src/mdast2docx/handlers/paragraphStyle.js +21 -0
- package/src/mdast2docx/handlers/root.js +16 -0
- package/src/mdast2docx/handlers/table.js +54 -0
- package/src/mdast2docx/handlers/tableCell.js +51 -0
- package/src/mdast2docx/handlers/tableRow.js +28 -0
- package/src/mdast2docx/handlers/text.js +24 -0
- package/src/mdast2docx/handlers/thematicBreak.js +24 -0
- package/src/mdast2docx/hast-table-handler.js +145 -0
- package/src/mdast2docx/index.d.ts +21 -0
- package/src/mdast2docx/index.js +88 -0
- package/src/mdast2docx/mdast-download-images.js +92 -0
- package/src/mdast2docx/mdast-sanitize-html.js +112 -0
- package/src/mdast2docx/template/[Content_Types].xml +41 -0
- package/src/mdast2docx/template/docProps/app.xml +20 -0
- package/src/mdast2docx/template/docProps/core.xml +12 -0
- package/src/mdast2docx/template/word/_rels/document.xml.rels +51 -0
- package/src/mdast2docx/template/word/_rels/settings.xml.rels +7 -0
- package/src/mdast2docx/template/word/document.xml +1116 -0
- package/src/mdast2docx/template/word/endnotes.xml +56 -0
- package/src/mdast2docx/template/word/fontTable.xml +58 -0
- package/src/mdast2docx/template/word/footer1.xml +39 -0
- package/src/mdast2docx/template/word/footer2.xml +39 -0
- package/src/mdast2docx/template/word/footer3.xml +39 -0
- package/src/mdast2docx/template/word/footnotes.xml +56 -0
- package/src/mdast2docx/template/word/header1.xml +39 -0
- package/src/mdast2docx/template/word/header2.xml +39 -0
- package/src/mdast2docx/template/word/header3.xml +39 -0
- package/src/mdast2docx/template/word/media/image1.png +0 -0
- package/src/mdast2docx/template/word/numbering.xml +277 -0
- package/src/mdast2docx/template/word/settings.xml +91 -0
- package/src/mdast2docx/template/word/styles.xml +1084 -0
- package/src/mdast2docx/template/word/theme/theme1.xml +296 -0
- package/src/mdast2docx/template/word/webSettings.xml +40 -0
- package/src/mdast2docx/template.docx +0 -0
- package/src/mdast2docx/utils.js +22 -0
|
@@ -0,0 +1,1116 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
|
2
|
+
<w:document xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas"
|
|
3
|
+
xmlns:cx="http://schemas.microsoft.com/office/drawing/2014/chartex"
|
|
4
|
+
xmlns:cx1="http://schemas.microsoft.com/office/drawing/2015/9/8/chartex"
|
|
5
|
+
xmlns:cx2="http://schemas.microsoft.com/office/drawing/2015/10/21/chartex"
|
|
6
|
+
xmlns:cx3="http://schemas.microsoft.com/office/drawing/2016/5/9/chartex"
|
|
7
|
+
xmlns:cx4="http://schemas.microsoft.com/office/drawing/2016/5/10/chartex"
|
|
8
|
+
xmlns:cx5="http://schemas.microsoft.com/office/drawing/2016/5/11/chartex"
|
|
9
|
+
xmlns:cx6="http://schemas.microsoft.com/office/drawing/2016/5/12/chartex"
|
|
10
|
+
xmlns:cx7="http://schemas.microsoft.com/office/drawing/2016/5/13/chartex"
|
|
11
|
+
xmlns:cx8="http://schemas.microsoft.com/office/drawing/2016/5/14/chartex"
|
|
12
|
+
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
13
|
+
xmlns:aink="http://schemas.microsoft.com/office/drawing/2016/ink"
|
|
14
|
+
xmlns:am3d="http://schemas.microsoft.com/office/drawing/2017/model3d"
|
|
15
|
+
xmlns:o="urn:schemas-microsoft-com:office:office"
|
|
16
|
+
xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
|
|
17
|
+
xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math"
|
|
18
|
+
xmlns:v="urn:schemas-microsoft-com:vml"
|
|
19
|
+
xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing"
|
|
20
|
+
xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing"
|
|
21
|
+
xmlns:w10="urn:schemas-microsoft-com:office:word"
|
|
22
|
+
xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
|
|
23
|
+
xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
|
|
24
|
+
xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml"
|
|
25
|
+
xmlns:w16cex="http://schemas.microsoft.com/office/word/2018/wordml/cex"
|
|
26
|
+
xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid"
|
|
27
|
+
xmlns:w16="http://schemas.microsoft.com/office/word/2018/wordml"
|
|
28
|
+
xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex"
|
|
29
|
+
xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup"
|
|
30
|
+
xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk"
|
|
31
|
+
xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml"
|
|
32
|
+
xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape"
|
|
33
|
+
mc:Ignorable="w14 w15 w16se w16cid w16 w16cex wp14">
|
|
34
|
+
<w:background w:color="FFFFFF"/>
|
|
35
|
+
<w:body>
|
|
36
|
+
<w:p w14:paraId="52E017F9" w14:textId="77777777" w:rsidR="00FA7969"
|
|
37
|
+
w:rsidRDefault="006E467F">
|
|
38
|
+
<w:pPr>
|
|
39
|
+
<w:pStyle w:val="Heading1"/>
|
|
40
|
+
</w:pPr>
|
|
41
|
+
<w:r>
|
|
42
|
+
<w:t>Heading 1</w:t>
|
|
43
|
+
</w:r>
|
|
44
|
+
</w:p>
|
|
45
|
+
<w:p w14:paraId="1E1AFC83" w14:textId="77777777" w:rsidR="00FA7969"
|
|
46
|
+
w:rsidRDefault="006E467F">
|
|
47
|
+
<w:pPr>
|
|
48
|
+
<w:pStyle w:val="Heading2"/>
|
|
49
|
+
</w:pPr>
|
|
50
|
+
<w:r>
|
|
51
|
+
<w:t>Heading 2</w:t>
|
|
52
|
+
</w:r>
|
|
53
|
+
</w:p>
|
|
54
|
+
<w:p w14:paraId="57574773" w14:textId="77777777" w:rsidR="00FA7969"
|
|
55
|
+
w:rsidRDefault="006E467F">
|
|
56
|
+
<w:pPr>
|
|
57
|
+
<w:pStyle w:val="Heading3"/>
|
|
58
|
+
</w:pPr>
|
|
59
|
+
<w:r>
|
|
60
|
+
<w:t>Heading 3</w:t>
|
|
61
|
+
</w:r>
|
|
62
|
+
</w:p>
|
|
63
|
+
<w:p w14:paraId="4A5CDBD2" w14:textId="77777777" w:rsidR="00FA7969"
|
|
64
|
+
w:rsidRDefault="006E467F">
|
|
65
|
+
<w:pPr>
|
|
66
|
+
<w:pStyle w:val="Heading4"/>
|
|
67
|
+
</w:pPr>
|
|
68
|
+
<w:r>
|
|
69
|
+
<w:t>Heading 4</w:t>
|
|
70
|
+
</w:r>
|
|
71
|
+
</w:p>
|
|
72
|
+
<w:p w14:paraId="6769E758" w14:textId="77777777" w:rsidR="00FA7969"
|
|
73
|
+
w:rsidRDefault="006E467F">
|
|
74
|
+
<w:pPr>
|
|
75
|
+
<w:pStyle w:val="Heading5"/>
|
|
76
|
+
</w:pPr>
|
|
77
|
+
<w:r>
|
|
78
|
+
<w:t>Heading 5</w:t>
|
|
79
|
+
</w:r>
|
|
80
|
+
</w:p>
|
|
81
|
+
<w:p w14:paraId="64DD15ED" w14:textId="77777777" w:rsidR="00FA7969"
|
|
82
|
+
w:rsidRDefault="006E467F">
|
|
83
|
+
<w:pPr>
|
|
84
|
+
<w:pStyle w:val="Heading6"/>
|
|
85
|
+
</w:pPr>
|
|
86
|
+
<w:r>
|
|
87
|
+
<w:rPr>
|
|
88
|
+
<w:i/>
|
|
89
|
+
<w:iCs/>
|
|
90
|
+
</w:rPr>
|
|
91
|
+
<w:t>Heading 6</w:t>
|
|
92
|
+
</w:r>
|
|
93
|
+
</w:p>
|
|
94
|
+
<w:p w14:paraId="3F116A13" w14:textId="77777777" w:rsidR="00FA7969"
|
|
95
|
+
w:rsidRDefault="006E467F">
|
|
96
|
+
<w:r>
|
|
97
|
+
<w:t xml:space="preserve">This paragraph has </w:t>
|
|
98
|
+
</w:r>
|
|
99
|
+
<w:r>
|
|
100
|
+
<w:rPr>
|
|
101
|
+
<w:b/>
|
|
102
|
+
<w:bCs/>
|
|
103
|
+
</w:rPr>
|
|
104
|
+
<w:t>bold</w:t>
|
|
105
|
+
</w:r>
|
|
106
|
+
<w:r>
|
|
107
|
+
<w:t xml:space="preserve"> or </w:t>
|
|
108
|
+
</w:r>
|
|
109
|
+
<w:r>
|
|
110
|
+
<w:rPr>
|
|
111
|
+
<w:i/>
|
|
112
|
+
<w:iCs/>
|
|
113
|
+
</w:rPr>
|
|
114
|
+
<w:t>italic</w:t>
|
|
115
|
+
</w:r>
|
|
116
|
+
<w:r>
|
|
117
|
+
<w:t xml:space="preserve"> or </w:t>
|
|
118
|
+
</w:r>
|
|
119
|
+
<w:r>
|
|
120
|
+
<w:rPr>
|
|
121
|
+
<w:u w:val="single"/>
|
|
122
|
+
</w:rPr>
|
|
123
|
+
<w:t>underlined</w:t>
|
|
124
|
+
</w:r>
|
|
125
|
+
<w:r>
|
|
126
|
+
<w:t xml:space="preserve"> text.</w:t>
|
|
127
|
+
</w:r>
|
|
128
|
+
</w:p>
|
|
129
|
+
<w:p w14:paraId="1A1F3545" w14:textId="77777777" w:rsidR="00FA7969"
|
|
130
|
+
w:rsidRDefault="006E467F">
|
|
131
|
+
<w:r>
|
|
132
|
+
<w:t xml:space="preserve">This paragraph has </w:t>
|
|
133
|
+
</w:r>
|
|
134
|
+
<w:r>
|
|
135
|
+
<w:rPr>
|
|
136
|
+
<w:b/>
|
|
137
|
+
<w:bCs/>
|
|
138
|
+
<w:i/>
|
|
139
|
+
<w:iCs/>
|
|
140
|
+
</w:rPr>
|
|
141
|
+
<w:t>bold-italic</w:t>
|
|
142
|
+
</w:r>
|
|
143
|
+
<w:r>
|
|
144
|
+
<w:t xml:space="preserve">, </w:t>
|
|
145
|
+
</w:r>
|
|
146
|
+
<w:r>
|
|
147
|
+
<w:rPr>
|
|
148
|
+
<w:i/>
|
|
149
|
+
<w:iCs/>
|
|
150
|
+
<w:u w:val="single"/>
|
|
151
|
+
</w:rPr>
|
|
152
|
+
<w:t>underlined-italic</w:t>
|
|
153
|
+
</w:r>
|
|
154
|
+
<w:r>
|
|
155
|
+
<w:t xml:space="preserve"> and </w:t>
|
|
156
|
+
</w:r>
|
|
157
|
+
<w:r>
|
|
158
|
+
<w:rPr>
|
|
159
|
+
<w:b/>
|
|
160
|
+
<w:bCs/>
|
|
161
|
+
<w:u w:val="single"/>
|
|
162
|
+
</w:rPr>
|
|
163
|
+
<w:t>underlined-bold</w:t>
|
|
164
|
+
</w:r>
|
|
165
|
+
<w:r>
|
|
166
|
+
<w:t xml:space="preserve"> text.</w:t>
|
|
167
|
+
</w:r>
|
|
168
|
+
</w:p>
|
|
169
|
+
<w:p w14:paraId="3A4B4DCA" w14:textId="77777777" w:rsidR="00FA7969"
|
|
170
|
+
w:rsidRDefault="006E467F">
|
|
171
|
+
<w:r>
|
|
172
|
+
<w:t xml:space="preserve">This paragraph has code and </w:t>
|
|
173
|
+
</w:r>
|
|
174
|
+
<w:hyperlink r:id="rId7" w:history="1">
|
|
175
|
+
<w:r>
|
|
176
|
+
<w:rPr>
|
|
177
|
+
<w:rStyle w:val="Hyperlink"/>
|
|
178
|
+
</w:rPr>
|
|
179
|
+
<w:t>links</w:t>
|
|
180
|
+
</w:r>
|
|
181
|
+
</w:hyperlink>
|
|
182
|
+
<w:r>
|
|
183
|
+
<w:t>.</w:t>
|
|
184
|
+
</w:r>
|
|
185
|
+
</w:p>
|
|
186
|
+
<w:p w14:paraId="7D85ED65" w14:textId="02CD5237" w:rsidR="00FA7969"
|
|
187
|
+
w:rsidRDefault="006E467F">
|
|
188
|
+
<w:r>
|
|
189
|
+
<w:t xml:space="preserve">This has even more formatting like </w:t>
|
|
190
|
+
</w:r>
|
|
191
|
+
<w:r>
|
|
192
|
+
<w:rPr>
|
|
193
|
+
<w:strike/>
|
|
194
|
+
</w:rPr>
|
|
195
|
+
<w:t>strikethrough</w:t>
|
|
196
|
+
</w:r>
|
|
197
|
+
<w:r>
|
|
198
|
+
<w:t xml:space="preserve"> and some</w:t>
|
|
199
|
+
</w:r>
|
|
200
|
+
<w:r>
|
|
201
|
+
<w:rPr>
|
|
202
|
+
<w:vertAlign w:val="subscript"/>
|
|
203
|
+
</w:rPr>
|
|
204
|
+
<w:t>supscript</w:t>
|
|
205
|
+
</w:r>
|
|
206
|
+
<w:r w:rsidR="00235843">
|
|
207
|
+
<w:rPr>
|
|
208
|
+
<w:vertAlign w:val="subscript"/>
|
|
209
|
+
<w:lang w:val="en-US"/>
|
|
210
|
+
</w:rPr>
|
|
211
|
+
<w:t xml:space="preserve"> </w:t>
|
|
212
|
+
</w:r>
|
|
213
|
+
<w:r>
|
|
214
|
+
<w:t>and</w:t>
|
|
215
|
+
</w:r>
|
|
216
|
+
<w:r>
|
|
217
|
+
<w:rPr>
|
|
218
|
+
<w:vertAlign w:val="superscript"/>
|
|
219
|
+
</w:rPr>
|
|
220
|
+
<w:t>superscript</w:t>
|
|
221
|
+
</w:r>
|
|
222
|
+
<w:r>
|
|
223
|
+
<w:t>.</w:t>
|
|
224
|
+
</w:r>
|
|
225
|
+
</w:p>
|
|
226
|
+
<w:p w14:paraId="15F133A8" w14:textId="3F0C5F05" w:rsidR="00FA7969"
|
|
227
|
+
w:rsidRDefault="00235843">
|
|
228
|
+
<w:r>
|
|
229
|
+
<w:rPr>
|
|
230
|
+
<w:lang w:val="en-US"/>
|
|
231
|
+
</w:rPr>
|
|
232
|
+
<w:t xml:space="preserve">This is </w:t>
|
|
233
|
+
</w:r>
|
|
234
|
+
<w:r w:rsidRPr="00235843">
|
|
235
|
+
<w:rPr>
|
|
236
|
+
<w:rStyle w:val="InlineCode"/>
|
|
237
|
+
</w:rPr>
|
|
238
|
+
<w:t>Inline Code</w:t>
|
|
239
|
+
</w:r>
|
|
240
|
+
<w:r w:rsidR="006E467F">
|
|
241
|
+
<w:t>.</w:t>
|
|
242
|
+
</w:r>
|
|
243
|
+
</w:p>
|
|
244
|
+
<w:p w14:paraId="3EC70D6B" w14:textId="3D4D3158" w:rsidR="00FA7969" w:rsidRPr="00235843"
|
|
245
|
+
w:rsidRDefault="00235843">
|
|
246
|
+
<w:pPr>
|
|
247
|
+
<w:rPr>
|
|
248
|
+
<w:lang w:val="en-US"/>
|
|
249
|
+
</w:rPr>
|
|
250
|
+
</w:pPr>
|
|
251
|
+
<w:r>
|
|
252
|
+
<w:rPr>
|
|
253
|
+
<w:lang w:val="en-US"/>
|
|
254
|
+
</w:rPr>
|
|
255
|
+
<w:t>Here some block code:</w:t>
|
|
256
|
+
</w:r>
|
|
257
|
+
</w:p>
|
|
258
|
+
<w:p w14:paraId="210B156B" w14:textId="7B41E3B3" w:rsidR="00FA7969"
|
|
259
|
+
w:rsidRDefault="006E467F" w:rsidP="00235843">
|
|
260
|
+
<w:pPr>
|
|
261
|
+
<w:pStyle w:val="CodeBlock"/>
|
|
262
|
+
</w:pPr>
|
|
263
|
+
<w:r>
|
|
264
|
+
<w:t>async function getFile(drive, parentId, name, isFolder) {</w:t>
|
|
265
|
+
</w:r>
|
|
266
|
+
<w:r>
|
|
267
|
+
<w:br/>
|
|
268
|
+
<w:t xml:space="preserve"> const query = [</w:t>
|
|
269
|
+
</w:r>
|
|
270
|
+
<w:r>
|
|
271
|
+
<w:br/>
|
|
272
|
+
<w:t xml:space="preserve"> `'${parentId}' in parents`,</w:t>
|
|
273
|
+
</w:r>
|
|
274
|
+
<w:r>
|
|
275
|
+
<w:br/>
|
|
276
|
+
<w:t xml:space="preserve"> `and name = ${JSON.stringify(name)}`,</w:t>
|
|
277
|
+
</w:r>
|
|
278
|
+
<w:r>
|
|
279
|
+
<w:br/>
|
|
280
|
+
<w:t xml:space="preserve"> 'and trashed=false',</w:t>
|
|
281
|
+
</w:r>
|
|
282
|
+
<w:r>
|
|
283
|
+
<w:br/>
|
|
284
|
+
<w:t xml:space="preserve"> `and mimeType ${isFolder ? '=' : '!='} }</w:t>
|
|
285
|
+
</w:r>
|
|
286
|
+
<w:r>
|
|
287
|
+
<w:br/>
|
|
288
|
+
</w:r>
|
|
289
|
+
</w:p>
|
|
290
|
+
<w:p w14:paraId="7CF72E67" w14:textId="19DA5A7C" w:rsidR="00FA7969"
|
|
291
|
+
w:rsidRDefault="00235843">
|
|
292
|
+
<w:pPr>
|
|
293
|
+
<w:pStyle w:val="Heading2"/>
|
|
294
|
+
</w:pPr>
|
|
295
|
+
<w:r>
|
|
296
|
+
<w:rPr>
|
|
297
|
+
<w:lang w:val="en-US"/>
|
|
298
|
+
</w:rPr>
|
|
299
|
+
<w:t>N</w:t>
|
|
300
|
+
</w:r>
|
|
301
|
+
<w:r w:rsidR="006E467F">
|
|
302
|
+
<w:t>umbered lists:</w:t>
|
|
303
|
+
</w:r>
|
|
304
|
+
</w:p>
|
|
305
|
+
<w:p w14:paraId="31BC2612" w14:textId="04BD8E90" w:rsidR="00FA7969"
|
|
306
|
+
w:rsidRDefault="00235843">
|
|
307
|
+
<w:pPr>
|
|
308
|
+
<w:pStyle w:val="ListParagraph"/>
|
|
309
|
+
<w:numPr>
|
|
310
|
+
<w:ilvl w:val="0"/>
|
|
311
|
+
<w:numId w:val="2"/>
|
|
312
|
+
</w:numPr>
|
|
313
|
+
</w:pPr>
|
|
314
|
+
<w:r>
|
|
315
|
+
<w:rPr>
|
|
316
|
+
<w:lang w:val="en-US"/>
|
|
317
|
+
</w:rPr>
|
|
318
|
+
<w:t>one</w:t>
|
|
319
|
+
</w:r>
|
|
320
|
+
</w:p>
|
|
321
|
+
<w:p w14:paraId="1A0D55BC" w14:textId="0F71BF09" w:rsidR="00FA7969"
|
|
322
|
+
w:rsidRDefault="00235843">
|
|
323
|
+
<w:pPr>
|
|
324
|
+
<w:pStyle w:val="ListParagraph"/>
|
|
325
|
+
<w:numPr>
|
|
326
|
+
<w:ilvl w:val="0"/>
|
|
327
|
+
<w:numId w:val="2"/>
|
|
328
|
+
</w:numPr>
|
|
329
|
+
</w:pPr>
|
|
330
|
+
<w:r>
|
|
331
|
+
<w:rPr>
|
|
332
|
+
<w:lang w:val="en-US"/>
|
|
333
|
+
</w:rPr>
|
|
334
|
+
<w:t>two</w:t>
|
|
335
|
+
</w:r>
|
|
336
|
+
</w:p>
|
|
337
|
+
<w:p w14:paraId="0C9ED4EF" w14:textId="6A08C08A" w:rsidR="00FA7969"
|
|
338
|
+
w:rsidRDefault="00235843">
|
|
339
|
+
<w:pPr>
|
|
340
|
+
<w:pStyle w:val="ListParagraph"/>
|
|
341
|
+
<w:numPr>
|
|
342
|
+
<w:ilvl w:val="0"/>
|
|
343
|
+
<w:numId w:val="2"/>
|
|
344
|
+
</w:numPr>
|
|
345
|
+
</w:pPr>
|
|
346
|
+
<w:r>
|
|
347
|
+
<w:rPr>
|
|
348
|
+
<w:lang w:val="en-US"/>
|
|
349
|
+
</w:rPr>
|
|
350
|
+
<w:t>three</w:t>
|
|
351
|
+
</w:r>
|
|
352
|
+
</w:p>
|
|
353
|
+
<w:p w14:paraId="445B7AD0" w14:textId="77777777" w:rsidR="00FA7969"
|
|
354
|
+
w:rsidRDefault="006E467F">
|
|
355
|
+
<w:pPr>
|
|
356
|
+
<w:pStyle w:val="ListParagraph"/>
|
|
357
|
+
<w:numPr>
|
|
358
|
+
<w:ilvl w:val="1"/>
|
|
359
|
+
<w:numId w:val="2"/>
|
|
360
|
+
</w:numPr>
|
|
361
|
+
</w:pPr>
|
|
362
|
+
<w:r>
|
|
363
|
+
<w:t>Apple</w:t>
|
|
364
|
+
</w:r>
|
|
365
|
+
</w:p>
|
|
366
|
+
<w:p w14:paraId="04835AED" w14:textId="77777777" w:rsidR="00FA7969"
|
|
367
|
+
w:rsidRDefault="006E467F">
|
|
368
|
+
<w:pPr>
|
|
369
|
+
<w:pStyle w:val="ListParagraph"/>
|
|
370
|
+
<w:numPr>
|
|
371
|
+
<w:ilvl w:val="1"/>
|
|
372
|
+
<w:numId w:val="2"/>
|
|
373
|
+
</w:numPr>
|
|
374
|
+
</w:pPr>
|
|
375
|
+
<w:r>
|
|
376
|
+
<w:t>Oranges</w:t>
|
|
377
|
+
</w:r>
|
|
378
|
+
</w:p>
|
|
379
|
+
<w:p w14:paraId="3E43F603" w14:textId="77777777" w:rsidR="00FA7969"
|
|
380
|
+
w:rsidRDefault="006E467F">
|
|
381
|
+
<w:pPr>
|
|
382
|
+
<w:pStyle w:val="ListParagraph"/>
|
|
383
|
+
<w:numPr>
|
|
384
|
+
<w:ilvl w:val="1"/>
|
|
385
|
+
<w:numId w:val="2"/>
|
|
386
|
+
</w:numPr>
|
|
387
|
+
</w:pPr>
|
|
388
|
+
<w:r>
|
|
389
|
+
<w:t>Lemons</w:t>
|
|
390
|
+
</w:r>
|
|
391
|
+
</w:p>
|
|
392
|
+
<w:p w14:paraId="5041A89B" w14:textId="77777777" w:rsidR="00FA7969"
|
|
393
|
+
w:rsidRDefault="006E467F">
|
|
394
|
+
<w:pPr>
|
|
395
|
+
<w:pStyle w:val="ListParagraph"/>
|
|
396
|
+
<w:numPr>
|
|
397
|
+
<w:ilvl w:val="2"/>
|
|
398
|
+
<w:numId w:val="2"/>
|
|
399
|
+
</w:numPr>
|
|
400
|
+
</w:pPr>
|
|
401
|
+
<w:r>
|
|
402
|
+
<w:t>Roman</w:t>
|
|
403
|
+
</w:r>
|
|
404
|
+
</w:p>
|
|
405
|
+
<w:p w14:paraId="01EE2225" w14:textId="77777777" w:rsidR="00FA7969"
|
|
406
|
+
w:rsidRDefault="006E467F">
|
|
407
|
+
<w:pPr>
|
|
408
|
+
<w:pStyle w:val="ListParagraph"/>
|
|
409
|
+
<w:numPr>
|
|
410
|
+
<w:ilvl w:val="2"/>
|
|
411
|
+
<w:numId w:val="2"/>
|
|
412
|
+
</w:numPr>
|
|
413
|
+
</w:pPr>
|
|
414
|
+
<w:r>
|
|
415
|
+
<w:t>Greek</w:t>
|
|
416
|
+
</w:r>
|
|
417
|
+
<w:r>
|
|
418
|
+
<w:br/>
|
|
419
|
+
<w:t>Muiltiline</w:t>
|
|
420
|
+
</w:r>
|
|
421
|
+
<w:r>
|
|
422
|
+
<w:br/>
|
|
423
|
+
<w:t>With code.</w:t>
|
|
424
|
+
</w:r>
|
|
425
|
+
</w:p>
|
|
426
|
+
<w:p w14:paraId="27A0A522" w14:textId="77777777" w:rsidR="00FA7969"
|
|
427
|
+
w:rsidRDefault="006E467F">
|
|
428
|
+
<w:pPr>
|
|
429
|
+
<w:pStyle w:val="ListParagraph"/>
|
|
430
|
+
<w:numPr>
|
|
431
|
+
<w:ilvl w:val="2"/>
|
|
432
|
+
<w:numId w:val="2"/>
|
|
433
|
+
</w:numPr>
|
|
434
|
+
</w:pPr>
|
|
435
|
+
<w:r>
|
|
436
|
+
<w:t>Spanish</w:t>
|
|
437
|
+
</w:r>
|
|
438
|
+
</w:p>
|
|
439
|
+
<w:p w14:paraId="58EBCBF7" w14:textId="77777777" w:rsidR="00FA7969"
|
|
440
|
+
w:rsidRDefault="006E467F">
|
|
441
|
+
<w:pPr>
|
|
442
|
+
<w:pStyle w:val="Heading2"/>
|
|
443
|
+
</w:pPr>
|
|
444
|
+
<w:r>
|
|
445
|
+
<w:t>And unordered lists:</w:t>
|
|
446
|
+
</w:r>
|
|
447
|
+
</w:p>
|
|
448
|
+
<w:p w14:paraId="68FC9F90" w14:textId="03A14CFB" w:rsidR="00FA7969"
|
|
449
|
+
w:rsidRDefault="00235843">
|
|
450
|
+
<w:pPr>
|
|
451
|
+
<w:pStyle w:val="ListParagraph"/>
|
|
452
|
+
<w:numPr>
|
|
453
|
+
<w:ilvl w:val="0"/>
|
|
454
|
+
<w:numId w:val="3"/>
|
|
455
|
+
</w:numPr>
|
|
456
|
+
</w:pPr>
|
|
457
|
+
<w:r>
|
|
458
|
+
<w:rPr>
|
|
459
|
+
<w:lang w:val="en-US"/>
|
|
460
|
+
</w:rPr>
|
|
461
|
+
<w:t>one</w:t>
|
|
462
|
+
</w:r>
|
|
463
|
+
</w:p>
|
|
464
|
+
<w:p w14:paraId="3E82598A" w14:textId="6660F30C" w:rsidR="00FA7969"
|
|
465
|
+
w:rsidRDefault="00235843">
|
|
466
|
+
<w:pPr>
|
|
467
|
+
<w:pStyle w:val="ListParagraph"/>
|
|
468
|
+
<w:numPr>
|
|
469
|
+
<w:ilvl w:val="0"/>
|
|
470
|
+
<w:numId w:val="3"/>
|
|
471
|
+
</w:numPr>
|
|
472
|
+
</w:pPr>
|
|
473
|
+
<w:r>
|
|
474
|
+
<w:rPr>
|
|
475
|
+
<w:lang w:val="en-US"/>
|
|
476
|
+
</w:rPr>
|
|
477
|
+
<w:t>two</w:t>
|
|
478
|
+
</w:r>
|
|
479
|
+
</w:p>
|
|
480
|
+
<w:p w14:paraId="29B1D123" w14:textId="2A96DA9B" w:rsidR="00FA7969"
|
|
481
|
+
w:rsidRDefault="00235843" w:rsidP="00235843">
|
|
482
|
+
<w:pPr>
|
|
483
|
+
<w:pStyle w:val="ListParagraph"/>
|
|
484
|
+
<w:numPr>
|
|
485
|
+
<w:ilvl w:val="1"/>
|
|
486
|
+
<w:numId w:val="3"/>
|
|
487
|
+
</w:numPr>
|
|
488
|
+
</w:pPr>
|
|
489
|
+
<w:r>
|
|
490
|
+
<w:rPr>
|
|
491
|
+
<w:lang w:val="en-US"/>
|
|
492
|
+
</w:rPr>
|
|
493
|
+
<w:t>three</w:t>
|
|
494
|
+
</w:r>
|
|
495
|
+
</w:p>
|
|
496
|
+
<w:p w14:paraId="60457B8A" w14:textId="588CCDB8" w:rsidR="00235843" w:rsidRPr="00235843"
|
|
497
|
+
w:rsidRDefault="00235843" w:rsidP="00235843">
|
|
498
|
+
<w:pPr>
|
|
499
|
+
<w:pStyle w:val="ListParagraph"/>
|
|
500
|
+
<w:numPr>
|
|
501
|
+
<w:ilvl w:val="2"/>
|
|
502
|
+
<w:numId w:val="3"/>
|
|
503
|
+
</w:numPr>
|
|
504
|
+
</w:pPr>
|
|
505
|
+
<w:r>
|
|
506
|
+
<w:rPr>
|
|
507
|
+
<w:lang w:val="en-US"/>
|
|
508
|
+
</w:rPr>
|
|
509
|
+
<w:t>four</w:t>
|
|
510
|
+
</w:r>
|
|
511
|
+
</w:p>
|
|
512
|
+
<w:p w14:paraId="78FE6AC4" w14:textId="0B3563E0" w:rsidR="00235843"
|
|
513
|
+
w:rsidRDefault="00235843" w:rsidP="00235843">
|
|
514
|
+
<w:pPr>
|
|
515
|
+
<w:pStyle w:val="ListParagraph"/>
|
|
516
|
+
<w:numPr>
|
|
517
|
+
<w:ilvl w:val="2"/>
|
|
518
|
+
<w:numId w:val="3"/>
|
|
519
|
+
</w:numPr>
|
|
520
|
+
</w:pPr>
|
|
521
|
+
<w:r>
|
|
522
|
+
<w:rPr>
|
|
523
|
+
<w:lang w:val="en-US"/>
|
|
524
|
+
</w:rPr>
|
|
525
|
+
<w:t>five</w:t>
|
|
526
|
+
</w:r>
|
|
527
|
+
</w:p>
|
|
528
|
+
<w:p w14:paraId="25B0E290" w14:textId="77777777" w:rsidR="00FA7969"
|
|
529
|
+
w:rsidRDefault="006E467F">
|
|
530
|
+
<w:pPr>
|
|
531
|
+
<w:pStyle w:val="ListParagraph"/>
|
|
532
|
+
<w:numPr>
|
|
533
|
+
<w:ilvl w:val="1"/>
|
|
534
|
+
<w:numId w:val="3"/>
|
|
535
|
+
</w:numPr>
|
|
536
|
+
</w:pPr>
|
|
537
|
+
<w:r>
|
|
538
|
+
<w:t>Nested 1</w:t>
|
|
539
|
+
</w:r>
|
|
540
|
+
</w:p>
|
|
541
|
+
<w:p w14:paraId="0DF086A8" w14:textId="77777777" w:rsidR="00FA7969"
|
|
542
|
+
w:rsidRDefault="006E467F">
|
|
543
|
+
<w:pPr>
|
|
544
|
+
<w:pStyle w:val="ListParagraph"/>
|
|
545
|
+
<w:numPr>
|
|
546
|
+
<w:ilvl w:val="1"/>
|
|
547
|
+
<w:numId w:val="3"/>
|
|
548
|
+
</w:numPr>
|
|
549
|
+
</w:pPr>
|
|
550
|
+
<w:r>
|
|
551
|
+
<w:t>Nested 2</w:t>
|
|
552
|
+
</w:r>
|
|
553
|
+
</w:p>
|
|
554
|
+
<w:p w14:paraId="5F6A946D" w14:textId="77777777" w:rsidR="00FA7969"
|
|
555
|
+
w:rsidRDefault="006E467F">
|
|
556
|
+
<w:pPr>
|
|
557
|
+
<w:pStyle w:val="ListParagraph"/>
|
|
558
|
+
<w:numPr>
|
|
559
|
+
<w:ilvl w:val="0"/>
|
|
560
|
+
<w:numId w:val="3"/>
|
|
561
|
+
</w:numPr>
|
|
562
|
+
</w:pPr>
|
|
563
|
+
<w:r>
|
|
564
|
+
<w:lastRenderedPageBreak/>
|
|
565
|
+
<w:t>Mixed with ordered</w:t>
|
|
566
|
+
</w:r>
|
|
567
|
+
</w:p>
|
|
568
|
+
<w:p w14:paraId="16CCF8AF" w14:textId="77777777" w:rsidR="00FA7969"
|
|
569
|
+
w:rsidRDefault="006E467F">
|
|
570
|
+
<w:pPr>
|
|
571
|
+
<w:pStyle w:val="ListParagraph"/>
|
|
572
|
+
<w:numPr>
|
|
573
|
+
<w:ilvl w:val="0"/>
|
|
574
|
+
<w:numId w:val="2"/>
|
|
575
|
+
</w:numPr>
|
|
576
|
+
</w:pPr>
|
|
577
|
+
<w:r>
|
|
578
|
+
<w:t>One</w:t>
|
|
579
|
+
</w:r>
|
|
580
|
+
</w:p>
|
|
581
|
+
<w:p w14:paraId="506D184E" w14:textId="77777777" w:rsidR="00FA7969"
|
|
582
|
+
w:rsidRDefault="006E467F">
|
|
583
|
+
<w:pPr>
|
|
584
|
+
<w:pStyle w:val="ListParagraph"/>
|
|
585
|
+
<w:numPr>
|
|
586
|
+
<w:ilvl w:val="0"/>
|
|
587
|
+
<w:numId w:val="2"/>
|
|
588
|
+
</w:numPr>
|
|
589
|
+
</w:pPr>
|
|
590
|
+
<w:r>
|
|
591
|
+
<w:t>Two</w:t>
|
|
592
|
+
</w:r>
|
|
593
|
+
</w:p>
|
|
594
|
+
<w:p w14:paraId="044A5429" w14:textId="77777777" w:rsidR="00FA7969"
|
|
595
|
+
w:rsidRDefault="006E467F">
|
|
596
|
+
<w:pPr>
|
|
597
|
+
<w:pStyle w:val="ListParagraph"/>
|
|
598
|
+
<w:numPr>
|
|
599
|
+
<w:ilvl w:val="0"/>
|
|
600
|
+
<w:numId w:val="2"/>
|
|
601
|
+
</w:numPr>
|
|
602
|
+
</w:pPr>
|
|
603
|
+
<w:r>
|
|
604
|
+
<w:t>Three</w:t>
|
|
605
|
+
</w:r>
|
|
606
|
+
</w:p>
|
|
607
|
+
<w:p w14:paraId="30C461B9" w14:textId="77777777" w:rsidR="00FA7969"
|
|
608
|
+
w:rsidRDefault="006E467F">
|
|
609
|
+
<w:pPr>
|
|
610
|
+
<w:pStyle w:val="Heading2"/>
|
|
611
|
+
</w:pPr>
|
|
612
|
+
<w:r>
|
|
613
|
+
<w:t>Let’s try a simple table</w:t>
|
|
614
|
+
</w:r>
|
|
615
|
+
</w:p>
|
|
616
|
+
<w:tbl>
|
|
617
|
+
<w:tblPr>
|
|
618
|
+
<w:tblStyle w:val="PageBlock"/>
|
|
619
|
+
<w:tblW w:w="0" w:type="auto"/>
|
|
620
|
+
<w:tblLook w:val="04A0" w:firstRow="1" w:lastRow="0" w:firstColumn="1"
|
|
621
|
+
w:lastColumn="0" w:noHBand="0" w:noVBand="1"/>
|
|
622
|
+
</w:tblPr>
|
|
623
|
+
<w:tblGrid>
|
|
624
|
+
<w:gridCol w:w="416"/>
|
|
625
|
+
<w:gridCol w:w="428"/>
|
|
626
|
+
<w:gridCol w:w="405"/>
|
|
627
|
+
<w:gridCol w:w="428"/>
|
|
628
|
+
</w:tblGrid>
|
|
629
|
+
<w:tr w:rsidR="00FA7969" w14:paraId="7C90FC72" w14:textId="77777777"
|
|
630
|
+
w:rsidTr="00FA7969">
|
|
631
|
+
<w:trPr>
|
|
632
|
+
<w:cnfStyle w:val="100000000000" w:firstRow="1" w:lastRow="0" w:firstColumn="0"
|
|
633
|
+
w:lastColumn="0" w:oddVBand="0" w:evenVBand="0" w:oddHBand="0"
|
|
634
|
+
w:evenHBand="0" w:firstRowFirstColumn="0" w:firstRowLastColumn="0"
|
|
635
|
+
w:lastRowFirstColumn="0" w:lastRowLastColumn="0"/>
|
|
636
|
+
<w:tblHeader/>
|
|
637
|
+
</w:trPr>
|
|
638
|
+
<w:tc>
|
|
639
|
+
<w:tcPr>
|
|
640
|
+
<w:tcW w:w="0" w:type="auto"/>
|
|
641
|
+
</w:tcPr>
|
|
642
|
+
<w:p w14:paraId="78E5CA93" w14:textId="77777777" w:rsidR="00FA7969"
|
|
643
|
+
w:rsidRDefault="006E467F">
|
|
644
|
+
<w:r>
|
|
645
|
+
<w:t>a0</w:t>
|
|
646
|
+
</w:r>
|
|
647
|
+
</w:p>
|
|
648
|
+
</w:tc>
|
|
649
|
+
<w:tc>
|
|
650
|
+
<w:tcPr>
|
|
651
|
+
<w:tcW w:w="0" w:type="auto"/>
|
|
652
|
+
</w:tcPr>
|
|
653
|
+
<w:p w14:paraId="22995779" w14:textId="77777777" w:rsidR="00FA7969"
|
|
654
|
+
w:rsidRDefault="006E467F">
|
|
655
|
+
<w:r>
|
|
656
|
+
<w:t>b0</w:t>
|
|
657
|
+
</w:r>
|
|
658
|
+
</w:p>
|
|
659
|
+
</w:tc>
|
|
660
|
+
<w:tc>
|
|
661
|
+
<w:tcPr>
|
|
662
|
+
<w:tcW w:w="0" w:type="auto"/>
|
|
663
|
+
</w:tcPr>
|
|
664
|
+
<w:p w14:paraId="6FBD905A" w14:textId="77777777" w:rsidR="00FA7969"
|
|
665
|
+
w:rsidRDefault="006E467F">
|
|
666
|
+
<w:r>
|
|
667
|
+
<w:t>c0</w:t>
|
|
668
|
+
</w:r>
|
|
669
|
+
</w:p>
|
|
670
|
+
</w:tc>
|
|
671
|
+
<w:tc>
|
|
672
|
+
<w:tcPr>
|
|
673
|
+
<w:tcW w:w="0" w:type="auto"/>
|
|
674
|
+
</w:tcPr>
|
|
675
|
+
<w:p w14:paraId="5657ACE7" w14:textId="77777777" w:rsidR="00FA7969"
|
|
676
|
+
w:rsidRDefault="006E467F">
|
|
677
|
+
<w:r>
|
|
678
|
+
<w:t>d0</w:t>
|
|
679
|
+
</w:r>
|
|
680
|
+
</w:p>
|
|
681
|
+
</w:tc>
|
|
682
|
+
</w:tr>
|
|
683
|
+
<w:tr w:rsidR="00FA7969" w14:paraId="675B0929" w14:textId="77777777">
|
|
684
|
+
<w:tc>
|
|
685
|
+
<w:tcPr>
|
|
686
|
+
<w:tcW w:w="0" w:type="auto"/>
|
|
687
|
+
</w:tcPr>
|
|
688
|
+
<w:p w14:paraId="61319C25" w14:textId="77777777" w:rsidR="00FA7969"
|
|
689
|
+
w:rsidRDefault="006E467F">
|
|
690
|
+
<w:r>
|
|
691
|
+
<w:t>a1</w:t>
|
|
692
|
+
</w:r>
|
|
693
|
+
</w:p>
|
|
694
|
+
</w:tc>
|
|
695
|
+
<w:tc>
|
|
696
|
+
<w:tcPr>
|
|
697
|
+
<w:tcW w:w="0" w:type="auto"/>
|
|
698
|
+
</w:tcPr>
|
|
699
|
+
<w:p w14:paraId="474025A9" w14:textId="77777777" w:rsidR="00FA7969"
|
|
700
|
+
w:rsidRDefault="006E467F">
|
|
701
|
+
<w:r>
|
|
702
|
+
<w:t>b1</w:t>
|
|
703
|
+
</w:r>
|
|
704
|
+
</w:p>
|
|
705
|
+
</w:tc>
|
|
706
|
+
<w:tc>
|
|
707
|
+
<w:tcPr>
|
|
708
|
+
<w:tcW w:w="0" w:type="auto"/>
|
|
709
|
+
</w:tcPr>
|
|
710
|
+
<w:p w14:paraId="02F1A5A8" w14:textId="77777777" w:rsidR="00FA7969"
|
|
711
|
+
w:rsidRDefault="006E467F">
|
|
712
|
+
<w:r>
|
|
713
|
+
<w:t>c1</w:t>
|
|
714
|
+
</w:r>
|
|
715
|
+
</w:p>
|
|
716
|
+
</w:tc>
|
|
717
|
+
<w:tc>
|
|
718
|
+
<w:tcPr>
|
|
719
|
+
<w:tcW w:w="0" w:type="auto"/>
|
|
720
|
+
</w:tcPr>
|
|
721
|
+
<w:p w14:paraId="0B6CC8AB" w14:textId="77777777" w:rsidR="00FA7969"
|
|
722
|
+
w:rsidRDefault="006E467F">
|
|
723
|
+
<w:r>
|
|
724
|
+
<w:t>d1</w:t>
|
|
725
|
+
</w:r>
|
|
726
|
+
</w:p>
|
|
727
|
+
</w:tc>
|
|
728
|
+
</w:tr>
|
|
729
|
+
<w:tr w:rsidR="00FA7969" w14:paraId="09781901" w14:textId="77777777">
|
|
730
|
+
<w:tc>
|
|
731
|
+
<w:tcPr>
|
|
732
|
+
<w:tcW w:w="0" w:type="auto"/>
|
|
733
|
+
</w:tcPr>
|
|
734
|
+
<w:p w14:paraId="2A7B4DD7" w14:textId="77777777" w:rsidR="00FA7969"
|
|
735
|
+
w:rsidRDefault="006E467F">
|
|
736
|
+
<w:r>
|
|
737
|
+
<w:t>a2</w:t>
|
|
738
|
+
</w:r>
|
|
739
|
+
</w:p>
|
|
740
|
+
</w:tc>
|
|
741
|
+
<w:tc>
|
|
742
|
+
<w:tcPr>
|
|
743
|
+
<w:tcW w:w="0" w:type="auto"/>
|
|
744
|
+
</w:tcPr>
|
|
745
|
+
<w:p w14:paraId="5766077F" w14:textId="77777777" w:rsidR="00FA7969"
|
|
746
|
+
w:rsidRDefault="006E467F">
|
|
747
|
+
<w:r>
|
|
748
|
+
<w:t>b2</w:t>
|
|
749
|
+
</w:r>
|
|
750
|
+
</w:p>
|
|
751
|
+
</w:tc>
|
|
752
|
+
<w:tc>
|
|
753
|
+
<w:tcPr>
|
|
754
|
+
<w:tcW w:w="0" w:type="auto"/>
|
|
755
|
+
</w:tcPr>
|
|
756
|
+
<w:p w14:paraId="003A7D8A" w14:textId="77777777" w:rsidR="00FA7969"
|
|
757
|
+
w:rsidRDefault="006E467F">
|
|
758
|
+
<w:r>
|
|
759
|
+
<w:t>c2</w:t>
|
|
760
|
+
</w:r>
|
|
761
|
+
</w:p>
|
|
762
|
+
</w:tc>
|
|
763
|
+
<w:tc>
|
|
764
|
+
<w:tcPr>
|
|
765
|
+
<w:tcW w:w="0" w:type="auto"/>
|
|
766
|
+
</w:tcPr>
|
|
767
|
+
<w:p w14:paraId="5EEEC7E9" w14:textId="77777777" w:rsidR="00FA7969"
|
|
768
|
+
w:rsidRDefault="006E467F">
|
|
769
|
+
<w:r>
|
|
770
|
+
<w:t>d2</w:t>
|
|
771
|
+
</w:r>
|
|
772
|
+
</w:p>
|
|
773
|
+
</w:tc>
|
|
774
|
+
</w:tr>
|
|
775
|
+
</w:tbl>
|
|
776
|
+
<w:p w14:paraId="6C72133D" w14:textId="77777777" w:rsidR="00235843"
|
|
777
|
+
w:rsidRDefault="00235843">
|
|
778
|
+
<w:pPr>
|
|
779
|
+
<w:pStyle w:val="Heading2"/>
|
|
780
|
+
</w:pPr>
|
|
781
|
+
</w:p>
|
|
782
|
+
<w:p w14:paraId="5F63F7AE" w14:textId="1A453795" w:rsidR="00FA7969"
|
|
783
|
+
w:rsidRDefault="006E467F">
|
|
784
|
+
<w:pPr>
|
|
785
|
+
<w:pStyle w:val="Heading2"/>
|
|
786
|
+
</w:pPr>
|
|
787
|
+
<w:r>
|
|
788
|
+
<w:t>And a more complex table</w:t>
|
|
789
|
+
</w:r>
|
|
790
|
+
</w:p>
|
|
791
|
+
<w:tbl>
|
|
792
|
+
<w:tblPr>
|
|
793
|
+
<w:tblStyle w:val="PageBlock"/>
|
|
794
|
+
<w:tblW w:w="0" w:type="auto"/>
|
|
795
|
+
<w:tblLook w:val="04A0" w:firstRow="1" w:lastRow="0" w:firstColumn="1"
|
|
796
|
+
w:lastColumn="0" w:noHBand="0" w:noVBand="1"/>
|
|
797
|
+
</w:tblPr>
|
|
798
|
+
<w:tblGrid>
|
|
799
|
+
<w:gridCol w:w="1172"/>
|
|
800
|
+
<w:gridCol w:w="861"/>
|
|
801
|
+
<w:gridCol w:w="917"/>
|
|
802
|
+
<w:gridCol w:w="1814"/>
|
|
803
|
+
</w:tblGrid>
|
|
804
|
+
<w:tr w:rsidR="00FA7969" w14:paraId="5C8ACD02" w14:textId="77777777"
|
|
805
|
+
w:rsidTr="00FA7969">
|
|
806
|
+
<w:trPr>
|
|
807
|
+
<w:cnfStyle w:val="100000000000" w:firstRow="1" w:lastRow="0" w:firstColumn="0"
|
|
808
|
+
w:lastColumn="0" w:oddVBand="0" w:evenVBand="0" w:oddHBand="0"
|
|
809
|
+
w:evenHBand="0" w:firstRowFirstColumn="0" w:firstRowLastColumn="0"
|
|
810
|
+
w:lastRowFirstColumn="0" w:lastRowLastColumn="0"/>
|
|
811
|
+
<w:tblHeader/>
|
|
812
|
+
</w:trPr>
|
|
813
|
+
<w:tc>
|
|
814
|
+
<w:tcPr>
|
|
815
|
+
<w:tcW w:w="0" w:type="auto"/>
|
|
816
|
+
</w:tcPr>
|
|
817
|
+
<w:p w14:paraId="1921B085" w14:textId="77777777" w:rsidR="00FA7969"
|
|
818
|
+
w:rsidRDefault="006E467F">
|
|
819
|
+
<w:r>
|
|
820
|
+
<w:rPr>
|
|
821
|
+
<w:bCs/>
|
|
822
|
+
</w:rPr>
|
|
823
|
+
<w:t>Country</w:t>
|
|
824
|
+
</w:r>
|
|
825
|
+
</w:p>
|
|
826
|
+
</w:tc>
|
|
827
|
+
<w:tc>
|
|
828
|
+
<w:tcPr>
|
|
829
|
+
<w:tcW w:w="0" w:type="auto"/>
|
|
830
|
+
</w:tcPr>
|
|
831
|
+
<w:p w14:paraId="3C7D9DC8" w14:textId="77777777" w:rsidR="00FA7969"
|
|
832
|
+
w:rsidRDefault="006E467F">
|
|
833
|
+
<w:r>
|
|
834
|
+
<w:rPr>
|
|
835
|
+
<w:bCs/>
|
|
836
|
+
</w:rPr>
|
|
837
|
+
<w:t>Abbrev</w:t>
|
|
838
|
+
</w:r>
|
|
839
|
+
</w:p>
|
|
840
|
+
</w:tc>
|
|
841
|
+
<w:tc>
|
|
842
|
+
<w:tcPr>
|
|
843
|
+
<w:tcW w:w="0" w:type="auto"/>
|
|
844
|
+
</w:tcPr>
|
|
845
|
+
<w:p w14:paraId="3A1AD5BA" w14:textId="77777777" w:rsidR="00FA7969"
|
|
846
|
+
w:rsidRDefault="006E467F">
|
|
847
|
+
<w:r>
|
|
848
|
+
<w:rPr>
|
|
849
|
+
<w:bCs/>
|
|
850
|
+
</w:rPr>
|
|
851
|
+
<w:t>Amount</w:t>
|
|
852
|
+
</w:r>
|
|
853
|
+
</w:p>
|
|
854
|
+
</w:tc>
|
|
855
|
+
<w:tc>
|
|
856
|
+
<w:tcPr>
|
|
857
|
+
<w:tcW w:w="0" w:type="auto"/>
|
|
858
|
+
</w:tcPr>
|
|
859
|
+
<w:p w14:paraId="328612C5" w14:textId="77777777" w:rsidR="00FA7969"
|
|
860
|
+
w:rsidRDefault="006E467F">
|
|
861
|
+
<w:r>
|
|
862
|
+
<w:rPr>
|
|
863
|
+
<w:bCs/>
|
|
864
|
+
</w:rPr>
|
|
865
|
+
<w:t>Example</w:t>
|
|
866
|
+
</w:r>
|
|
867
|
+
</w:p>
|
|
868
|
+
</w:tc>
|
|
869
|
+
</w:tr>
|
|
870
|
+
<w:tr w:rsidR="00FA7969" w14:paraId="6AAC3C9D" w14:textId="77777777">
|
|
871
|
+
<w:tc>
|
|
872
|
+
<w:tcPr>
|
|
873
|
+
<w:tcW w:w="0" w:type="auto"/>
|
|
874
|
+
</w:tcPr>
|
|
875
|
+
<w:p w14:paraId="53E79D77" w14:textId="77777777" w:rsidR="00FA7969"
|
|
876
|
+
w:rsidRDefault="006E467F">
|
|
877
|
+
<w:r>
|
|
878
|
+
<w:t>Switzerland</w:t>
|
|
879
|
+
</w:r>
|
|
880
|
+
</w:p>
|
|
881
|
+
</w:tc>
|
|
882
|
+
<w:tc>
|
|
883
|
+
<w:tcPr>
|
|
884
|
+
<w:tcW w:w="0" w:type="auto"/>
|
|
885
|
+
</w:tcPr>
|
|
886
|
+
<w:p w14:paraId="7790D2F7" w14:textId="77777777" w:rsidR="00FA7969"
|
|
887
|
+
w:rsidRDefault="006E467F">
|
|
888
|
+
<w:r>
|
|
889
|
+
<w:t>CH</w:t>
|
|
890
|
+
</w:r>
|
|
891
|
+
</w:p>
|
|
892
|
+
</w:tc>
|
|
893
|
+
<w:tc>
|
|
894
|
+
<w:tcPr>
|
|
895
|
+
<w:tcW w:w="0" w:type="auto"/>
|
|
896
|
+
</w:tcPr>
|
|
897
|
+
<w:p w14:paraId="09FA4DC9" w14:textId="77777777" w:rsidR="00FA7969"
|
|
898
|
+
w:rsidRDefault="006E467F">
|
|
899
|
+
<w:r>
|
|
900
|
+
<w:t>5</w:t>
|
|
901
|
+
</w:r>
|
|
902
|
+
</w:p>
|
|
903
|
+
</w:tc>
|
|
904
|
+
<w:tc>
|
|
905
|
+
<w:tcPr>
|
|
906
|
+
<w:tcW w:w="0" w:type="auto"/>
|
|
907
|
+
</w:tcPr>
|
|
908
|
+
<w:p w14:paraId="6286DBD4" w14:textId="77777777" w:rsidR="00FA7969"
|
|
909
|
+
w:rsidRDefault="006E467F">
|
|
910
|
+
<w:r>
|
|
911
|
+
<w:t>const a=1; let b=5;</w:t>
|
|
912
|
+
</w:r>
|
|
913
|
+
</w:p>
|
|
914
|
+
</w:tc>
|
|
915
|
+
</w:tr>
|
|
916
|
+
<w:tr w:rsidR="00FA7969" w14:paraId="69878D19" w14:textId="77777777">
|
|
917
|
+
<w:tc>
|
|
918
|
+
<w:tcPr>
|
|
919
|
+
<w:tcW w:w="0" w:type="auto"/>
|
|
920
|
+
</w:tcPr>
|
|
921
|
+
<w:p w14:paraId="6C9E42C0" w14:textId="77777777" w:rsidR="00FA7969"
|
|
922
|
+
w:rsidRDefault="006E467F">
|
|
923
|
+
<w:r>
|
|
924
|
+
<w:t>USA</w:t>
|
|
925
|
+
</w:r>
|
|
926
|
+
</w:p>
|
|
927
|
+
</w:tc>
|
|
928
|
+
<w:tc>
|
|
929
|
+
<w:tcPr>
|
|
930
|
+
<w:tcW w:w="0" w:type="auto"/>
|
|
931
|
+
</w:tcPr>
|
|
932
|
+
<w:p w14:paraId="0E73B949" w14:textId="77777777" w:rsidR="00FA7969"
|
|
933
|
+
w:rsidRDefault="006E467F">
|
|
934
|
+
<w:r>
|
|
935
|
+
<w:t>US</w:t>
|
|
936
|
+
</w:r>
|
|
937
|
+
</w:p>
|
|
938
|
+
</w:tc>
|
|
939
|
+
<w:tc>
|
|
940
|
+
<w:tcPr>
|
|
941
|
+
<w:tcW w:w="0" w:type="auto"/>
|
|
942
|
+
</w:tcPr>
|
|
943
|
+
<w:p w14:paraId="0897F0FA" w14:textId="77777777" w:rsidR="00FA7969"
|
|
944
|
+
w:rsidRDefault="006E467F">
|
|
945
|
+
<w:r>
|
|
946
|
+
<w:t>2.5</w:t>
|
|
947
|
+
</w:r>
|
|
948
|
+
</w:p>
|
|
949
|
+
</w:tc>
|
|
950
|
+
<w:tc>
|
|
951
|
+
<w:tcPr>
|
|
952
|
+
<w:tcW w:w="0" w:type="auto"/>
|
|
953
|
+
</w:tcPr>
|
|
954
|
+
<w:p w14:paraId="480456ED" w14:textId="77777777" w:rsidR="00FA7969"
|
|
955
|
+
w:rsidRDefault="006E467F">
|
|
956
|
+
<w:r>
|
|
957
|
+
<w:rPr>
|
|
958
|
+
<w:i/>
|
|
959
|
+
<w:iCs/>
|
|
960
|
+
</w:rPr>
|
|
961
|
+
<w:t>n/a -</w:t>
|
|
962
|
+
</w:r>
|
|
963
|
+
<w:r>
|
|
964
|
+
<w:t xml:space="preserve"> or </w:t>
|
|
965
|
+
</w:r>
|
|
966
|
+
<w:r>
|
|
967
|
+
<w:rPr>
|
|
968
|
+
<w:noProof/>
|
|
969
|
+
</w:rPr>
|
|
970
|
+
<w:drawing>
|
|
971
|
+
<wp:inline distT="0" distB="0" distL="0" distR="0"
|
|
972
|
+
wp14:anchorId="229DD7E9" wp14:editId="1C70C5C9">
|
|
973
|
+
<wp:extent cx="304800" cy="304800"/>
|
|
974
|
+
<wp:effectExtent l="0" t="0" r="0" b="0"/>
|
|
975
|
+
<wp:docPr id="2" name="Picture 2"/>
|
|
976
|
+
<wp:cNvGraphicFramePr>
|
|
977
|
+
<a:graphicFrameLocks
|
|
978
|
+
xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main"
|
|
979
|
+
noChangeAspect="1"/>
|
|
980
|
+
</wp:cNvGraphicFramePr>
|
|
981
|
+
<a:graphic
|
|
982
|
+
xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main">
|
|
983
|
+
<a:graphicData
|
|
984
|
+
uri="http://schemas.openxmlformats.org/drawingml/2006/picture">
|
|
985
|
+
<pic:pic
|
|
986
|
+
xmlns:pic="http://schemas.openxmlformats.org/drawingml/2006/picture">
|
|
987
|
+
<pic:nvPicPr>
|
|
988
|
+
<pic:cNvPr id="0" name=""/>
|
|
989
|
+
<pic:cNvPicPr>
|
|
990
|
+
<a:picLocks noChangeAspect="1"
|
|
991
|
+
noChangeArrowheads="1"/>
|
|
992
|
+
</pic:cNvPicPr>
|
|
993
|
+
</pic:nvPicPr>
|
|
994
|
+
<pic:blipFill>
|
|
995
|
+
<a:blip r:embed="rId8"/>
|
|
996
|
+
<a:srcRect/>
|
|
997
|
+
<a:stretch>
|
|
998
|
+
<a:fillRect/>
|
|
999
|
+
</a:stretch>
|
|
1000
|
+
</pic:blipFill>
|
|
1001
|
+
<pic:spPr bwMode="auto">
|
|
1002
|
+
<a:xfrm>
|
|
1003
|
+
<a:off x="0" y="0"/>
|
|
1004
|
+
<a:ext cx="304800" cy="304800"/>
|
|
1005
|
+
</a:xfrm>
|
|
1006
|
+
<a:prstGeom prst="rect">
|
|
1007
|
+
<a:avLst/>
|
|
1008
|
+
</a:prstGeom>
|
|
1009
|
+
</pic:spPr>
|
|
1010
|
+
</pic:pic>
|
|
1011
|
+
</a:graphicData>
|
|
1012
|
+
</a:graphic>
|
|
1013
|
+
</wp:inline>
|
|
1014
|
+
</w:drawing>
|
|
1015
|
+
</w:r>
|
|
1016
|
+
</w:p>
|
|
1017
|
+
</w:tc>
|
|
1018
|
+
</w:tr>
|
|
1019
|
+
<w:tr w:rsidR="00FA7969" w14:paraId="1473D2B8" w14:textId="77777777">
|
|
1020
|
+
<w:tc>
|
|
1021
|
+
<w:tcPr>
|
|
1022
|
+
<w:tcW w:w="0" w:type="auto"/>
|
|
1023
|
+
</w:tcPr>
|
|
1024
|
+
<w:p w14:paraId="103CF178" w14:textId="77777777" w:rsidR="00FA7969"
|
|
1025
|
+
w:rsidRDefault="006E467F">
|
|
1026
|
+
<w:r>
|
|
1027
|
+
<w:t>Japan</w:t>
|
|
1028
|
+
</w:r>
|
|
1029
|
+
</w:p>
|
|
1030
|
+
</w:tc>
|
|
1031
|
+
<w:tc>
|
|
1032
|
+
<w:tcPr>
|
|
1033
|
+
<w:tcW w:w="0" w:type="auto"/>
|
|
1034
|
+
</w:tcPr>
|
|
1035
|
+
<w:p w14:paraId="0D0845F7" w14:textId="77777777" w:rsidR="00FA7969"
|
|
1036
|
+
w:rsidRDefault="006E467F">
|
|
1037
|
+
<w:r>
|
|
1038
|
+
<w:t>JP</w:t>
|
|
1039
|
+
</w:r>
|
|
1040
|
+
</w:p>
|
|
1041
|
+
</w:tc>
|
|
1042
|
+
<w:tc>
|
|
1043
|
+
<w:tcPr>
|
|
1044
|
+
<w:tcW w:w="0" w:type="auto"/>
|
|
1045
|
+
</w:tcPr>
|
|
1046
|
+
<w:p w14:paraId="1170BF25" w14:textId="77777777" w:rsidR="00FA7969"
|
|
1047
|
+
w:rsidRDefault="006E467F">
|
|
1048
|
+
<w:r>
|
|
1049
|
+
<w:t>3.14</w:t>
|
|
1050
|
+
</w:r>
|
|
1051
|
+
</w:p>
|
|
1052
|
+
</w:tc>
|
|
1053
|
+
<w:tc>
|
|
1054
|
+
<w:tcPr>
|
|
1055
|
+
<w:tcW w:w="0" w:type="auto"/>
|
|
1056
|
+
</w:tcPr>
|
|
1057
|
+
<w:p w14:paraId="2D619A93" w14:textId="77777777" w:rsidR="00FA7969"
|
|
1058
|
+
w:rsidRDefault="006E467F">
|
|
1059
|
+
<w:r>
|
|
1060
|
+
<w:t>Math.PI;</w:t>
|
|
1061
|
+
</w:r>
|
|
1062
|
+
</w:p>
|
|
1063
|
+
</w:tc>
|
|
1064
|
+
</w:tr>
|
|
1065
|
+
</w:tbl>
|
|
1066
|
+
<w:p w14:paraId="42BABE2F" w14:textId="338318E7" w:rsidR="00FA7969"
|
|
1067
|
+
w:rsidRDefault="00FA7969" w:rsidP="00235843">
|
|
1068
|
+
<w:pPr>
|
|
1069
|
+
<w:pStyle w:val="Heading2"/>
|
|
1070
|
+
</w:pPr>
|
|
1071
|
+
</w:p>
|
|
1072
|
+
<w:p w14:paraId="475F13E2" w14:textId="7EE10C3F" w:rsidR="00A133DC"
|
|
1073
|
+
w:rsidRDefault="00A133DC" w:rsidP="004E2A95">
|
|
1074
|
+
<w:pPr>
|
|
1075
|
+
<w:pStyle w:val="Heading1"/>
|
|
1076
|
+
<w:rPr>
|
|
1077
|
+
<w:lang w:val="en-US"/>
|
|
1078
|
+
</w:rPr>
|
|
1079
|
+
</w:pPr>
|
|
1080
|
+
<w:r>
|
|
1081
|
+
<w:rPr>
|
|
1082
|
+
<w:lang w:val="en-US"/>
|
|
1083
|
+
</w:rPr>
|
|
1084
|
+
<w:t>And Some quotes</w:t>
|
|
1085
|
+
</w:r>
|
|
1086
|
+
</w:p>
|
|
1087
|
+
<w:p w14:paraId="1A9FB81D" w14:textId="17944CF8" w:rsidR="00A133DC" w:rsidRPr="00A133DC"
|
|
1088
|
+
w:rsidRDefault="00A133DC" w:rsidP="00A133DC">
|
|
1089
|
+
<w:pPr>
|
|
1090
|
+
<w:pStyle w:val="Quote"/>
|
|
1091
|
+
</w:pPr>
|
|
1092
|
+
<w:r w:rsidRPr="00A133DC">
|
|
1093
|
+
<w:t>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur tempor, eros
|
|
1094
|
+
vitae egestas scelerisque, tellus erat blandit sem, ut volutpat sem erat sit
|
|
1095
|
+
amet augue. Nulla facilisi. Vivamus ac nulla vitae lacus pharetra rhoncus vel
|
|
1096
|
+
sed ligula. Cras ultricies, nunc vitae mollis posuere, orci erat auctor enim,
|
|
1097
|
+
nec tristique sem sapien quis mauris. Phasellus tristique lorem pellentesque
|
|
1098
|
+
elit vestibulum, et dictum ipsum ullamcorper. Maecenas at interdum nisl.
|
|
1099
|
+
</w:t>
|
|
1100
|
+
</w:r>
|
|
1101
|
+
</w:p>
|
|
1102
|
+
<w:sectPr w:rsidR="00A133DC" w:rsidRPr="00A133DC">
|
|
1103
|
+
<w:headerReference w:type="even" r:id="rId9"/>
|
|
1104
|
+
<w:headerReference w:type="default" r:id="rId10"/>
|
|
1105
|
+
<w:footerReference w:type="even" r:id="rId11"/>
|
|
1106
|
+
<w:footerReference w:type="default" r:id="rId12"/>
|
|
1107
|
+
<w:headerReference w:type="first" r:id="rId13"/>
|
|
1108
|
+
<w:footerReference w:type="first" r:id="rId14"/>
|
|
1109
|
+
<w:pgSz w:w="11906" w:h="16838"/>
|
|
1110
|
+
<w:pgMar w:top="1440" w:right="1440" w:bottom="1440" w:left="1440" w:header="708"
|
|
1111
|
+
w:footer="708" w:gutter="0"/>
|
|
1112
|
+
<w:cols w:space="708"/>
|
|
1113
|
+
<w:docGrid w:linePitch="360"/>
|
|
1114
|
+
</w:sectPr>
|
|
1115
|
+
</w:body>
|
|
1116
|
+
</w:document>
|