@adobe/helix-md2docx 1.3.9 → 1.4.0
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 +21 -0
- package/package.json +4 -4
- package/src/mdast2docx/handlers/table.js +16 -8
- package/src/mdast2docx/handlers/tableCell.js +20 -3
- package/src/mdast2docx/handlers/tableRow.js +2 -7
- package/src/mdast2docx/hast-table-cell-handler.js +46 -0
- package/src/mdast2docx/hast-table-handler.js +39 -58
- package/src/mdast2docx/mdast-sanitize-html.js +3 -0
- package/src/mdast2docx/template/[Content_Types].xml +39 -41
- package/src/mdast2docx/template/docProps/app.xml +40 -20
- package/src/mdast2docx/template/docProps/core.xml +12 -12
- package/src/mdast2docx/template/word/_rels/document.xml.rels +36 -51
- package/src/mdast2docx/template/word/document.xml +1907 -1116
- package/src/mdast2docx/template/word/fontTable.xml +105 -58
- package/src/mdast2docx/template/word/media/image1.png +0 -0
- package/src/mdast2docx/template/word/numbering.xml +622 -277
- package/src/mdast2docx/template/word/settings.xml +140 -91
- package/src/mdast2docx/template/word/styles.xml +1806 -1084
- package/src/mdast2docx/template/word/theme/theme1.xml +490 -296
- package/src/mdast2docx/template/word/webSettings.xml +13 -40
- package/src/mdast2docx/template.docx +0 -0
- package/src/mdast2docx/template/word/_rels/settings.xml.rels +0 -7
- package/src/mdast2docx/template/word/endnotes.xml +0 -56
- package/src/mdast2docx/template/word/footer1.xml +0 -39
- package/src/mdast2docx/template/word/footer2.xml +0 -39
- package/src/mdast2docx/template/word/footer3.xml +0 -39
- package/src/mdast2docx/template/word/footnotes.xml +0 -56
- package/src/mdast2docx/template/word/header1.xml +0 -39
- package/src/mdast2docx/template/word/header2.xml +0 -39
- package/src/mdast2docx/template/word/header3.xml +0 -39
|
@@ -1,91 +1,140 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
|
2
|
-
<w:settings
|
|
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
|
-
<w:
|
|
77
|
-
<w:
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
<w:
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
<w:
|
|
88
|
-
<w:
|
|
89
|
-
<
|
|
90
|
-
<
|
|
91
|
-
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
|
2
|
+
<w:settings
|
|
3
|
+
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
4
|
+
xmlns:o="urn:schemas-microsoft-com:office:office"
|
|
5
|
+
xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
|
|
6
|
+
xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math"
|
|
7
|
+
xmlns:v="urn:schemas-microsoft-com:vml"
|
|
8
|
+
xmlns:w10="urn:schemas-microsoft-com:office:word"
|
|
9
|
+
xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
|
|
10
|
+
xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
|
|
11
|
+
xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml"
|
|
12
|
+
xmlns:w16cex="http://schemas.microsoft.com/office/word/2018/wordml/cex"
|
|
13
|
+
xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid"
|
|
14
|
+
xmlns:w16="http://schemas.microsoft.com/office/word/2018/wordml"
|
|
15
|
+
xmlns:w16sdtdh="http://schemas.microsoft.com/office/word/2020/wordml/sdtdatahash"
|
|
16
|
+
xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex"
|
|
17
|
+
xmlns:sl="http://schemas.openxmlformats.org/schemaLibrary/2006/main"
|
|
18
|
+
mc:Ignorable="w14 w15 w16se w16cid w16 w16cex w16sdtdh">
|
|
19
|
+
<w:zoom w:percent="150"/>
|
|
20
|
+
<w:stylePaneFormatFilter
|
|
21
|
+
w:val="1004"
|
|
22
|
+
w:allStyles="0"
|
|
23
|
+
w:customStyles="0"
|
|
24
|
+
w:latentStyles="1"
|
|
25
|
+
w:stylesInUse="0"
|
|
26
|
+
w:headingStyles="0"
|
|
27
|
+
w:numberingStyles="0"
|
|
28
|
+
w:tableStyles="0"
|
|
29
|
+
w:directFormattingOnRuns="0"
|
|
30
|
+
w:directFormattingOnParagraphs="0"
|
|
31
|
+
w:directFormattingOnNumbering="0"
|
|
32
|
+
w:directFormattingOnTables="0"
|
|
33
|
+
w:clearFormatting="1"
|
|
34
|
+
w:top3HeadingStyles="0"
|
|
35
|
+
w:visibleStyles="0"
|
|
36
|
+
w:alternateStyleNames="0"/>
|
|
37
|
+
<w:defaultTabStop w:val="720"/>
|
|
38
|
+
<w:defaultTableStyle w:val="PageBlock"/>
|
|
39
|
+
<w:characterSpacingControl w:val="doNotCompress"/>
|
|
40
|
+
<w:compat>
|
|
41
|
+
<w:compatSetting
|
|
42
|
+
w:name="compatibilityMode"
|
|
43
|
+
w:uri="http://schemas.microsoft.com/office/word"
|
|
44
|
+
w:val="15"/>
|
|
45
|
+
<w:compatSetting
|
|
46
|
+
w:name="overrideTableStyleFontSizeAndJustification"
|
|
47
|
+
w:uri="http://schemas.microsoft.com/office/word"
|
|
48
|
+
w:val="1"/>
|
|
49
|
+
<w:compatSetting
|
|
50
|
+
w:name="enableOpenTypeFeatures"
|
|
51
|
+
w:uri="http://schemas.microsoft.com/office/word"
|
|
52
|
+
w:val="1"/>
|
|
53
|
+
<w:compatSetting
|
|
54
|
+
w:name="doNotFlipMirrorIndents"
|
|
55
|
+
w:uri="http://schemas.microsoft.com/office/word"
|
|
56
|
+
w:val="1"/>
|
|
57
|
+
<w:compatSetting
|
|
58
|
+
w:name="differentiateMultirowTableHeaders"
|
|
59
|
+
w:uri="http://schemas.microsoft.com/office/word"
|
|
60
|
+
w:val="1"/>
|
|
61
|
+
<w:compatSetting
|
|
62
|
+
w:name="useWord2013TrackBottomHyphenation"
|
|
63
|
+
w:uri="http://schemas.microsoft.com/office/word"
|
|
64
|
+
w:val="1"/>
|
|
65
|
+
</w:compat>
|
|
66
|
+
<w:rsids>
|
|
67
|
+
<w:rsidRoot w:val="003D59E2"/>
|
|
68
|
+
<w:rsid w:val="0018352E"/>
|
|
69
|
+
<w:rsid w:val="001C017D"/>
|
|
70
|
+
<w:rsid w:val="002431C5"/>
|
|
71
|
+
<w:rsid w:val="00244FA7"/>
|
|
72
|
+
<w:rsid w:val="002736E5"/>
|
|
73
|
+
<w:rsid w:val="002B4F93"/>
|
|
74
|
+
<w:rsid w:val="00366335"/>
|
|
75
|
+
<w:rsid w:val="003D59E2"/>
|
|
76
|
+
<w:rsid w:val="004672D0"/>
|
|
77
|
+
<w:rsid w:val="00554A37"/>
|
|
78
|
+
<w:rsid w:val="005C565D"/>
|
|
79
|
+
<w:rsid w:val="006458D5"/>
|
|
80
|
+
<w:rsid w:val="006619BB"/>
|
|
81
|
+
<w:rsid w:val="006D1615"/>
|
|
82
|
+
<w:rsid w:val="00742951"/>
|
|
83
|
+
<w:rsid w:val="00862D20"/>
|
|
84
|
+
<w:rsid w:val="009C729D"/>
|
|
85
|
+
<w:rsid w:val="009F323F"/>
|
|
86
|
+
<w:rsid w:val="00A01F4A"/>
|
|
87
|
+
<w:rsid w:val="00A21961"/>
|
|
88
|
+
<w:rsid w:val="00B24F8B"/>
|
|
89
|
+
<w:rsid w:val="00C67FF9"/>
|
|
90
|
+
<w:rsid w:val="00CD03DD"/>
|
|
91
|
+
<w:rsid w:val="00D31ADB"/>
|
|
92
|
+
<w:rsid w:val="00EE04F2"/>
|
|
93
|
+
<w:rsid w:val="00F33F8C"/>
|
|
94
|
+
<w:rsid w:val="00F36F61"/>
|
|
95
|
+
<w:rsid w:val="00F70078"/>
|
|
96
|
+
<w:rsid w:val="00F75CDA"/>
|
|
97
|
+
<w:rsid w:val="00F7702F"/>
|
|
98
|
+
</w:rsids>
|
|
99
|
+
<m:mathPr>
|
|
100
|
+
<m:mathFont m:val="Cambria Math"/>
|
|
101
|
+
<m:brkBin m:val="before"/>
|
|
102
|
+
<m:brkBinSub m:val="--"/>
|
|
103
|
+
<m:smallFrac m:val="0"/>
|
|
104
|
+
<m:dispDef/>
|
|
105
|
+
<m:lMargin m:val="0"/>
|
|
106
|
+
<m:rMargin m:val="0"/>
|
|
107
|
+
<m:defJc m:val="centerGroup"/>
|
|
108
|
+
<m:wrapIndent m:val="1440"/>
|
|
109
|
+
<m:intLim m:val="subSup"/>
|
|
110
|
+
<m:naryLim m:val="undOvr"/>
|
|
111
|
+
</m:mathPr>
|
|
112
|
+
<w:themeFontLang w:val="en-CH"/>
|
|
113
|
+
<w:clrSchemeMapping
|
|
114
|
+
w:bg1="light1"
|
|
115
|
+
w:t1="dark1"
|
|
116
|
+
w:bg2="light2"
|
|
117
|
+
w:t2="dark2"
|
|
118
|
+
w:accent1="accent1"
|
|
119
|
+
w:accent2="accent2"
|
|
120
|
+
w:accent3="accent3"
|
|
121
|
+
w:accent4="accent4"
|
|
122
|
+
w:accent5="accent5"
|
|
123
|
+
w:accent6="accent6"
|
|
124
|
+
w:hyperlink="hyperlink"
|
|
125
|
+
w:followedHyperlink="followedHyperlink"/>
|
|
126
|
+
<w:shapeDefaults>
|
|
127
|
+
<o:shapedefaults
|
|
128
|
+
v:ext="edit"
|
|
129
|
+
spidmax="1026"/>
|
|
130
|
+
<o:shapelayout v:ext="edit">
|
|
131
|
+
<o:idmap
|
|
132
|
+
v:ext="edit"
|
|
133
|
+
data="1"/>
|
|
134
|
+
</o:shapelayout>
|
|
135
|
+
</w:shapeDefaults>
|
|
136
|
+
<w:decimalSymbol w:val="."/>
|
|
137
|
+
<w:listSeparator w:val=","/>
|
|
138
|
+
<w14:docId w14:val="6B948D47"/>
|
|
139
|
+
<w15:docId w15:val="{A3254F2A-EEB2-7C49-92C2-69C8F95B1DB6}"/>
|
|
140
|
+
</w:settings>
|