This repository was archived by the owner on Dec 12, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,8 @@ var mimeTypes = {
12
12
docx : 'application/vnd.openxmlformats-officedocument.wordprocessingml.document' ,
13
13
fb : 'application/x-fictionbook+xml' ,
14
14
fb2 : 'application/x-fictionbook+xml' ,
15
- odt : 'application/vnd.oasis.opendocument.text'
15
+ odt : 'application/vnd.oasis.opendocument.text' ,
16
+ epub : 'application/epub+zip'
16
17
} ;
17
18
function lookup ( filename ) {
18
19
var name = filename . toLowerCase ( ) ;
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " file2html" ,
3
- "version" : " 0.1.2 " ,
3
+ "version" : " 0.1.3 " ,
4
4
"description" : " JS convertor of files to HTML and CSS code" ,
5
5
"main" : " ./lib/index.js" ,
6
6
"types" : " ./lib/index.d.ts" ,
Original file line number Diff line number Diff line change @@ -10,7 +10,8 @@ const mimeTypes: {[key: string]: string} = {
10
10
docx : 'application/vnd.openxmlformats-officedocument.wordprocessingml.document' ,
11
11
fb : 'application/x-fictionbook+xml' ,
12
12
fb2 : 'application/x-fictionbook+xml' ,
13
- odt : 'application/vnd.oasis.opendocument.text'
13
+ odt : 'application/vnd.oasis.opendocument.text' ,
14
+ epub : 'application/epub+zip'
14
15
} ;
15
16
16
17
export function lookup ( filename : string ) {
You can’t perform that action at this time.
0 commit comments