forked from facelessuser/BracketHighlighter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbh_tag.sublime-settings
37 lines (33 loc) · 1004 Bytes
/
bh_tag.sublime-settings
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
// Style to use for matched tags
"tag_style": "tag",
// Scopes to exclude from tag searches
"tag_scope_exclude": ["string", "comment"],
// Determine which style of tag-matching to use in which syntax
"tag_mode": {
"xhtml": ["XML"],
"html": [
"HTML",
"HTML 5",
"PHP",
"HTML (Jinja Templates)",
"HTML (Rails)",
"HTML (Twig)",
"laravel-blade",
"Handlebars",
"AngularJS"
],
"cfml": ["HTML+CFML", "ColdFusion", "ColdFusionCFC"]
},
// Self closing HTML tags
"self_closing_tags": [
"colgroup", "dd", "dt", "li", "options", "p", "td",
"tfoot", "th", "thead", "tr"
],
// Tags that never have a closing
"single_tags": [
"area", "base", "basefont", "br", "col", "embed", "frame", "hr",
"img", "input", "isindex", "keygen", "link", "meta", "param",
"source", "track", "wbr"
]
}