diff options
author | icewind1991 <icewind1991@gmail.com> | 2013-04-24 08:18:10 -0700 |
---|---|---|
committer | icewind1991 <icewind1991@gmail.com> | 2013-04-24 08:18:10 -0700 |
commit | dd1c876009df15c97602f99b45e3c6e9cbcbf8af (patch) | |
tree | 618e7aa53691c70e1c33ac0c0cb52497e3585603 | |
parent | 3b576c5f779587f8a8f2bf52a2038edbb7e7104f (diff) | |
parent | 3d42d49d140534fd62c926c64bc0120094aade1c (diff) | |
download | nextcloud-server-dd1c876009df15c97602f99b45e3c6e9cbcbf8af.tar.gz nextcloud-server-dd1c876009df15c97602f99b45e3c6e9cbcbf8af.zip |
Merge pull request #3112 from owncloud/markdown-mimetype
Add markdown to mimetype list
-rw-r--r-- | lib/mimetypes.list.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/mimetypes.list.php b/lib/mimetypes.list.php index 86ce9c6c237..9135a7e3af2 100644 --- a/lib/mimetypes.list.php +++ b/lib/mimetypes.list.php @@ -98,5 +98,9 @@ return array( 'epub' => 'application/epub+zip', 'mobi' => 'application/x-mobipocket-ebook', 'exe' => 'application', - 'msi' => 'application' + 'msi' => 'application', + 'md' => 'text/markdown', + 'markdown' => 'text/markdown', + 'mdown' => 'text/markdown', + 'mdwn' => 'text/markdown' ); |