diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-06-05 17:11:14 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-06-05 17:11:14 +0200 |
commit | 5481a846c25258be14ee71d72040640c843b01c9 (patch) | |
tree | da918f2acd4cd1795d3139e0f2bb77ed9e1bbcbb /lib | |
parent | 5d93353a023c90527c44653328638f6c64a73dbd (diff) | |
download | nextcloud-server-5481a846c25258be14ee71d72040640c843b01c9.tar.gz nextcloud-server-5481a846c25258be14ee71d72040640c843b01c9.zip |
Adding mark down mime type mkd - fixes https://github.com/owncloud/files_texteditor/issues/45
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/mimetypes.list.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/private/mimetypes.list.php b/lib/private/mimetypes.list.php index 5a6b416c3e3..1e568eb4d95 100644 --- a/lib/private/mimetypes.list.php +++ b/lib/private/mimetypes.list.php @@ -106,6 +106,7 @@ return array( 'md' => array('text/markdown', null), 'mdb' => array('application/msaccess', null), 'mdwn' => array('text/markdown', null), + 'mkd' => array('text/markdown', null), 'mef' => array('image/x-dcraw', null), 'mkv' => array('video/x-matroska', null), 'mobi' => array('application/x-mobipocket-ebook', null), |