remove empty fields

This commit is contained in:
Willy Kloucek
2021-10-01 08:28:40 +02:00
parent 423e0d6450
commit 66f430bff1
-20
View File
@@ -267,71 +267,51 @@ func mimetypes(cfg *config.Config, logger log.Logger) map[string]map[string]stri
Extension: "pdf",
Name: "PDF",
Description: "PDF document",
Icon: "",
DefaultApp: "",
},
"application/vnd.oasis.opendocument.text": {
Extension: "odt",
Name: "OpenDocument",
Description: "OpenDocument text document",
Icon: "",
DefaultApp: "",
},
"application/vnd.oasis.opendocument.spreadsheet": {
Extension: "ods",
Name: "OpenSpreadsheet",
Description: "OpenDocument spreadsheet document",
Icon: "",
DefaultApp: "",
},
"application/vnd.oasis.opendocument.presentation": {
Extension: "odp",
Name: "OpenPresentation",
Description: "OpenDocument presentation document",
Icon: "",
DefaultApp: "",
},
"application/vnd.openxmlformats-officedocument.wordprocessingml.document": {
Extension: "docx",
Name: "Microsoft Word",
Description: "Microsoft Word document",
Icon: "",
DefaultApp: "",
},
"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet": {
Extension: "xlsx",
Name: "Microsoft Excel",
Description: "Microsoft Excel document",
Icon: "",
DefaultApp: "",
},
"application/vnd.openxmlformats-officedocument.presentationml.presentation": {
Extension: "pptx",
Name: "Microsoft PowerPoint",
Description: "Microsoft PowerPoint document",
Icon: "",
DefaultApp: "",
},
"application/vnd.jupyter": {
Extension: "ipynb",
Name: "Jupyter Notebook",
Description: "Jupyter Notebook",
Icon: "",
DefaultApp: "",
},
"text/markdown": {
Extension: "md",
Name: "Markdown file",
Description: "Markdown file",
Icon: "",
DefaultApp: "",
},
"application/compressed-markdown": {
Extension: "zmd",
Name: "Compressed markdown file",
Description: "Compressed markdown file",
Icon: "",
DefaultApp: "",
},
}