diff options
author | Robin Appelman <icewind@owncloud.com> | 2013-04-24 16:54:34 +0200 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2013-04-24 16:54:34 +0200 |
commit | 3d42d49d140534fd62c926c64bc0120094aade1c (patch) | |
tree | 7379fab17e9fc4841a82015f3c79b3f84ca40389 | |
parent | b1c9b296e809f1a1ebc1283013138f4f5cfc0141 (diff) | |
download | nextcloud-server-3d42d49d140534fd62c926c64bc0120094aade1c.tar.gz nextcloud-server-3d42d49d140534fd62c926c64bc0120094aade1c.zip |
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' ); |