-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
source.csswg.js
97 lines (95 loc) · 3.89 KB
/
source.csswg.js
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
// This is a TextMate grammar distributed by `starry-night`.
// This grammar is developed at
// <https://github.com/tabatkins/bikeshed>
// and licensed `cc0-1.0`.
// See <https://github.com/wooorm/starry-night> for more info.
/**
* @import {Grammar} from '@wooorm/starry-night'
*/
/** @type {Grammar} */
const grammar = {
extensions: ['.bs'],
names: ['bikeshed'],
patterns: [
{match: '<<[^>]+>>', name: 'string.quoted.double.csswg'},
{match: '<\\{[^}]+\\}>', name: 'string.quoted.double.csswg'},
{begin: '{{', end: '\\}\\}', name: 'string.quoted.double.csswg'},
{begin: '\\[=', end: '=]', name: 'string.quoted.double.csswg'},
{match: '\\[\\[[^\\]]+\\]\\]', name: 'constant.other.biblioLink.csswg'},
{match: '\\[[^\\]]+\\]', name: 'constant.language.csswg'},
{begin: "''", end: "''", name: 'string.quoted.double.csswg'},
{match: "(?<!\\w)'[^']+'", name: 'string.quoted.single.csswg'},
{begin: '<h\\d', end: '</h\\d>', name: 'invalid.illegal.heading.csswg'},
{
begin: '<dfn[^>]*>',
end: '</dfn>',
name: 'variable.parameter.definition.csswg'
},
{begin: '<a[ >]', end: '</a>', name: 'string.quoted.double.csswg'},
{
begin: '<pre\\s+class=.*?prod.*?>',
end: '</pre>',
name: 'entity.production.csswg',
patterns: [{include: '#production'}, {include: '#definition'}]
},
{
begin: '<pre\\s+class=.*?metadata.*?>',
end: '</pre>',
name: 'entity.metadata.csswg',
patterns: [
{
captures: {
1: {name: 'keyword.other.knownKeyName.csswg'},
2: {name: 'string.unquoted.csswg'}
},
match:
'^(?i)(Abstract|Advisement Class|Assertion Class|Assume Explicit For|At Risk|Audience|Block Elements|Boilerplate|Can I Use Url|Canonical Url|Complain About|Custom Warning Text|Custom Warning Title|Date|Deadline|Default Biblio Status|Default Highlight|Default Ref Status|ED|Editor|Editor Term|Former Editor|Group|H1|Ignore Can I Use Url Failure|Ignored Terms|Ignored Vars|Include Can I Use Panels|Indent|Infer Css Dfns|Inline Github Issues|Issue Class|Issue Tracker Template|Issue Tracking|Level|Line Numbers|Link Defaults|Logo|Mailing List Archives|Mailing List|Markup Shorthands|Max Toc Depth|No Editor|Note Class|Opaque Elements|Prepare For Tr|Previous Version|Repository|Revision|Shortname|Status Text|Status|Test Suite|Text Macro|Title|Toggle Diffs|TR|Translate Ids|Translation|URL|Use <I> Autolinks|Use Dfn Panels|Version History|Warning|Work Status)\\s*:\\s*(.*)$'
},
{
captures: {
1: {name: 'variable.other.customKeyName.csswg'},
2: {name: 'string.unquoted.csswg'}
},
match: '^\\s*(![\\w -]+)\\s*:\\s*(.*)$'
},
{
captures: {1: {name: 'invalid.illegal.unknownKeyName.csswg'}},
match: '^\\s*([\\w -]+)\\s*:\\s*.*$'
}
]
},
{
begin: '<pre\\s+class=.*?(propdef|descdef).*?>',
end: '</pre>',
name: 'entity.propdef.csswg',
patterns: [
{
captures: {
1: {name: 'keyword.other.keyName.csswg'},
2: {name: 'string.unquoted.csswg'}
},
match:
'^\\s*(?i)(Name|Value|For|Initial|Applies to|Inherited|Percentages|Media|Computed value|Animation type|Canonical order|Logical property group)\\s*:\\s*(.*)$'
},
{
captures: {
1: {name: 'variable.other.unknownKeyName.csswg'},
2: {name: 'string.unquoted.csswg'}
},
match: '^\\s*([\\w -]+)\\s*:\\s*(.*)$'
}
]
},
{begin: '</?[a-z]', end: '>', name: 'entity.name.tag.csswg'}
],
repository: {
definition: {
begin: '<dfn( |>)',
end: '</dfn>',
name: 'variable.parameter.definition.csswg'
},
production: {match: '<<[^>]+>>', name: 'constant.other.production.csswg'}
},
scopeName: 'source.csswg'
}
export default grammar