-
Notifications
You must be signed in to change notification settings - Fork 67
/
custom.xml
140 lines (112 loc) · 4.24 KB
/
custom.xml
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<mime-info>
<mime-type type="image/svg+xml">
<sub-class-of type="application/xml" />
<magic priority="50">
<match value="<svg" type="string" offset="0:4096" />
</magic>
</mime-type>
<mime-type type="application/msword">
<sub-class-of type="application/x-tika-msoffice" />
<magic priority="50">
<match value="0xd0cf11e0a1b11ae1" type="string" offset="0:8">
<match value="jbjb" type="string" offset="546" />
<match value="bjbj" type="string" offset="546" />
</match>
</magic>
</mime-type>
<mime-type type="application/x-ole-storage">
<sub-class-of type="application/x-tika-msoffice" />
<magic priority="50">
<match value="0xd0cf11e0a1b11ae1" type="string" offset="0:8" />
</magic>
</mime-type>
<mime-type type="application/vnd.openxmlformats-officedocument.wordprocessingml.document">
<sub-class-of type="application/x-tika-ooxml" />
<magic priority="50">
<match value="PK\003\004" type="string" offset="0">
<match value="[Content_Types].xml" type="string" offset="30:65536">
<match value="word/" type="string" offset="0:4096" />
</match>
<match value="_rels/.rels" type="string" offset="30">
<match value="word/" type="string" offset="0:4096" />
</match>
</match>
</magic>
</mime-type>
<mime-type type="application/vnd.openxmlformats-officedocument.presentationml.presentation">
<sub-class-of type="application/x-tika-ooxml" />
<magic priority="50">
<match value="PK\003\004" type="string" offset="0">
<match value="[Content_Types].xml" type="string" offset="30:65536">
<match value="ppt/" type="string" offset="0:4096" />
</match>
<match value="_rels/.rels" type="string" offset="30">
<match value="ppt/" type="string" offset="0:4096" />
</match>
</match>
</magic>
</mime-type>
<mime-type type="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet">
<sub-class-of type="application/x-tika-ooxml" />
<magic priority="50">
<match value="PK\003\004" type="string" offset="0">
<match value="[Content_Types].xml" type="string" offset="30:65536">
<match value="xl/" type="string" offset="0:4096" />
</match>
<match value="_rels/.rels" type="string" offset="30">
<match value="xl/" type="string" offset="0:4096" />
</match>
</match>
</magic>
</mime-type>
<mime-type type="video/webm">
<sub-class-of type="application/x-matroska" />
<magic priority="50">
<match value="0x1a45dfa3" type="string" offset="0">
<match value="\x42\x82" type="string" offset="4:4096">
<match value="webm" type="string" offset="4:4096">
<match value="V_VP8" type="string" offset="4:4096" />
<match value="V_VP9" type="string" offset="4:4096" />
</match>
</match>
</match>
</magic>
</mime-type>
<mime-type type="audio/webm">
<sub-class-of type="application/x-matroska" />
<magic priority="50">
<match value="0x1a45dfa3" type="string" offset="0">
<match value="\x42\x82" type="string" offset="4:4096">
<match value="webm" type="string" offset="4:4096">
<match value="A_VORBIS" type="string" offset="4:4096" />
<match value="A_OPUS" type="string" offset="4:4096" />
</match>
</match>
</match>
</magic>
</mime-type>
<mime-type type="font/woff">
<alias type="application/font-woff"/>
<magic priority="50">
<!-- Source: https://www.w3.org/TR/WOFF/#WOFFHeader -->
<match value="0x774F4646" type="string" offset="0" />
</magic>
<glob pattern="*.woff" />
</mime-type>
<mime-type type="font/woff2">
<alias type="application/font-woff2" />
<magic priority="50">
<!-- Source https://www.w3.org/TR/WOFF2/#woff20Header -->
<match value="0x774F4632" type="string" offset="0" />
</magic>
<glob pattern="*.woff2" />
</mime-type>
<mime-type type="text/x-scss">
<glob pattern="*.scss" />
<sub-class-of type="text/plain"/>
</mime-type>
<mime-type type="text/x-sass">
<glob pattern="*.sass" />
<sub-class-of type="text/plain"/>
</mime-type>
</mime-info>