15 lines
643 B
TOML
15 lines
643 B
TOML
name = "HTML"
|
|
path_suffixes = ["html"]
|
|
autoclose_before = ">})"
|
|
block_comment = ["<!-- ", " -->"]
|
|
brackets = [
|
|
{ start = "{", end = "}", close = true, newline = true },
|
|
{ start = "[", end = "]", close = true, newline = true },
|
|
{ start = "(", end = ")", close = true, newline = true },
|
|
{ start = "\"", end = "\"", close = true, newline = false, not_in = ["comment", "string"] },
|
|
{ start = "<", end = ">", close = true, newline = true, not_in = ["comment", "string"] },
|
|
{ start = "!--", end = " --", close = true, newline = false, not_in = ["comment", "string"] },
|
|
]
|
|
word_characters = ["-"]
|
|
prettier_parser_name = "html"
|