diff options
author | Ryan Batchelder <ryanbatch@gmail.com> | 2024-05-05 13:09:59 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-05 13:09:59 (GMT) |
commit | b6f0ab5b1cb6d779efe4867d83a60e8d66c48dee (patch) | |
tree | a28096653eef668737b1745f615b675ec076807b /Lib/mimetypes.py | |
parent | aeb36c5bb9f0e0813ac7c244c094abdcd967d622 (diff) | |
download | cpython-b6f0ab5b1cb6d779efe4867d83a60e8d66c48dee.zip cpython-b6f0ab5b1cb6d779efe4867d83a60e8d66c48dee.tar.gz cpython-b6f0ab5b1cb6d779efe4867d83a60e8d66c48dee.tar.bz2 |
gh-83505: Add markdown mimetype mapping (#17995)
Diffstat (limited to 'Lib/mimetypes.py')
-rw-r--r-- | Lib/mimetypes.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/mimetypes.py b/Lib/mimetypes.py index dad3813..021ae98 100644 --- a/Lib/mimetypes.py +++ b/Lib/mimetypes.py @@ -552,6 +552,8 @@ def _default_mime_types(): '.csv' : 'text/csv', '.html' : 'text/html', '.htm' : 'text/html', + '.md' : 'text/markdown', + '.markdown': 'text/markdown', '.n3' : 'text/n3', '.txt' : 'text/plain', '.bat' : 'text/plain', |