mirror of
https://github.com/zed-industries/zed.git
synced 2024-12-28 03:25:59 +00:00
Add support for .markdown extension (#13609)
Fixes #13608 Release Notes: - Added recognizing *.markdown files as Markdown ([#13608](https://github.com/zed-industries/zed/issues/13608)).
This commit is contained in:
parent
6e1b99b039
commit
891f195f7b
2 changed files with 2 additions and 1 deletions
|
@ -94,6 +94,7 @@
|
|||
"lua": "lua",
|
||||
"m4a": "audio",
|
||||
"m4v": "video",
|
||||
"markdown": "document",
|
||||
"md": "document",
|
||||
"mdb": "storage",
|
||||
"mdf": "storage",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
name = "Markdown"
|
||||
grammar = "markdown"
|
||||
path_suffixes = ["md", "mdx", "mdwn"]
|
||||
path_suffixes = ["md", "mdx", "mdwn", "markdown"]
|
||||
word_characters = ["-"]
|
||||
brackets = [
|
||||
{ start = "{", end = "}", close = true, newline = true },
|
||||
|
|
Loading…
Reference in a new issue