2

Trying to validate a file upload to make sure it is a .md / markdown file.

I have this:

 'mdfile' => 'mimes:text/markdown'

But also tried many variations:

'mdfile' => 'mimes:markdown'
'mdfile' => 'mimes:md'

But it always fails even if I am uploading a markdown file.

Cannot find much information online about validating against markdown files, any help?

Lovelock
  • 7,689
  • 19
  • 86
  • 186

1 Answers1

1

There's no official mime type for markdown.

Try text/x-markdown. Or anything that "prefixes" with text/*.

Ivanka Todorova
  • 9,964
  • 16
  • 66
  • 103