1name = "HTML"
2path_suffixes = ["html"]
3autoclose_before = ">})"
4block_comment = ["<!-- ", " -->"]
5brackets = [
6 { start = "{", end = "}", close = true, newline = true },
7 { start = "[", end = "]", close = true, newline = true },
8 { start = "(", end = ")", close = true, newline = true },
9 { start = "\"", end = "\"", close = true, newline = false, not_in = ["comment", "string"] },
10 { start = "<", end = ">", close = true, newline = true, not_in = ["comment", "string"] },
11 { start = "!--", end = " --", close = true, newline = false, not_in = ["comment", "string"] },
12]
13word_characters = ["-"]
14prettier_parser_name = "html"