accept text/markdown as well

This commit is contained in:
Thomas Müller 2013-10-16 15:31:43 +02:00
parent d8a7b1e537
commit aca66270c7
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ class TXT extends Provider {
class MarkDown extends TXT {
public function getMimeType() {
return '/text\/x-markdown/';
return '/text\/(x-)?markdown/';
}
}