File tree 5 files changed +10
-1
lines changed
5 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -59,6 +59,11 @@ function getFileTypeFromMimeType(mimeType) {
59
59
ext : 'xltx' ,
60
60
mime : 'application/vnd.openxmlformats-officedocument.spreadsheetml.template' ,
61
61
} ;
62
+ case 'application/vnd.ms-excel.template.macroEnabled' :
63
+ return {
64
+ ext : 'xltm' ,
65
+ mime : 'application/vnd.ms-excel.template.macroenabled.12' ,
66
+ } ;
62
67
case 'application/vnd.openxmlformats-officedocument.wordprocessingml.document' :
63
68
return {
64
69
ext : 'docx' ,
Original file line number Diff line number Diff line change 222
222
" lz4" ,
223
223
" potx" ,
224
224
" xltx" ,
225
- " dotx"
225
+ " dotx" ,
226
+ " xltm"
226
227
],
227
228
"dependencies" : {
228
229
"@tokenizer/inflate" : " ^0.2.6" ,
Original file line number Diff line number Diff line change @@ -564,6 +564,7 @@ abortController.abort(); // Abort file-type reading from the Blob stream.
564
564
- [` wv` ](https://en.wikipedia.org/wiki/WavPack) - WavPack
565
565
- [` xcf` ](https://en.wikipedia.org/wiki/XCF_(file_format)) - eXperimental Computing Facility
566
566
- [` xlsx` ](https://en.wikipedia.org/wiki/Office_Open_XML) - Microsoft Excel document
567
+ - [` xltm` ](https://en.wikipedia.org/wiki/List_of_Microsoft_Office_filename_extensions) - Microsoft Excel macro-enabled template
567
568
- [` xltx` ](https://en.wikipedia.org/wiki/List_of_Microsoft_Office_filename_extensions) - Microsoft Excel template
568
569
- [` xm` ](https://wiki.openmpt.org/Manual:_Module_formats#The_FastTracker_2_format_.28.xm.29) - Audio module format: FastTracker 2
569
570
- [` xml` ](https://en.wikipedia.org/wiki/XML) - eXtensible Markup Language
Original file line number Diff line number Diff line change @@ -159,6 +159,7 @@ export const extensions = [
159
159
'potx' ,
160
160
'xltx' ,
161
161
'dotx' ,
162
+ 'xltm' ,
162
163
] ;
163
164
164
165
export const mimeTypes = [
@@ -317,4 +318,5 @@ export const mimeTypes = [
317
318
'application/vnd.openxmlformats-officedocument.presentationml.template' ,
318
319
'application/vnd.openxmlformats-officedocument.spreadsheetml.template' ,
319
320
'application/vnd.openxmlformats-officedocument.wordprocessingml.template' ,
321
+ 'application/vnd.ms-excel.template.macroenabled.12' ,
320
322
] ;
You can’t perform that action at this time.
0 commit comments