| 1 |
{ |
| 2 |
"information_for_contributors": [ |
| 3 |
"This file has been converted from https://github.com/atom/language-xml/blob/master/grammars/xsl.cson", |
| 4 |
"If you want to provide a fix or improvement, please create a pull request against the original repository.", |
| 5 |
"Once accepted there, we are happy to receive an update request." |
| 6 |
], |
| 7 |
"version": "https://github.com/atom/language-xml/commit/507de2ee7daca60cf02e9e21fbeb92bbae73e280", |
| 8 |
"name": "xsl", |
| 9 |
"scopeName": "text.xml.xsl", |
| 10 |
"patterns": [ |
| 11 |
{ |
| 12 |
"begin": "(<)(xsl)((:))(template)", |
| 13 |
"captures": { |
| 14 |
"1": { |
| 15 |
"name": "punctuation.definition.tag.xml" |
| 16 |
}, |
| 17 |
"2": { |
| 18 |
"name": "entity.name.tag.namespace.xml" |
| 19 |
}, |
| 20 |
"3": { |
| 21 |
"name": "entity.name.tag.xml" |
| 22 |
}, |
| 23 |
"4": { |
| 24 |
"name": "punctuation.separator.namespace.xml" |
| 25 |
}, |
| 26 |
"5": { |
| 27 |
"name": "entity.name.tag.localname.xml" |
| 28 |
} |
| 29 |
}, |
| 30 |
"end": "(>)", |
| 31 |
"name": "meta.tag.xml.template", |
| 32 |
"patterns": [ |
| 33 |
{ |
| 34 |
"captures": { |
| 35 |
"1": { |
| 36 |
"name": "entity.other.attribute-name.namespace.xml" |
| 37 |
}, |
| 38 |
"2": { |
| 39 |
"name": "entity.other.attribute-name.xml" |
| 40 |
}, |
| 41 |
"3": { |
| 42 |
"name": "punctuation.separator.namespace.xml" |
| 43 |
}, |
| 44 |
"4": { |
| 45 |
"name": "entity.other.attribute-name.localname.xml" |
| 46 |
} |
| 47 |
}, |
| 48 |
"match": " (?:([-_a-zA-Z0-9]+)((:)))?([a-zA-Z-]+)" |
| 49 |
}, |
| 50 |
{ |
| 51 |
"include": "#doublequotedString" |
| 52 |
}, |
| 53 |
{ |
| 54 |
"include": "#singlequotedString" |
| 55 |
} |
| 56 |
] |
| 57 |
}, |
| 58 |
{ |
| 59 |
"include": "text.xml" |
| 60 |
} |
| 61 |
], |
| 62 |
"repository": { |
| 63 |
"doublequotedString": { |
| 64 |
"begin": "\"", |
| 65 |
"beginCaptures": { |
| 66 |
"0": { |
| 67 |
"name": "punctuation.definition.string.begin.xml" |
| 68 |
} |
| 69 |
}, |
| 70 |
"end": "\"", |
| 71 |
"endCaptures": { |
| 72 |
"0": { |
| 73 |
"name": "punctuation.definition.string.end.xml" |
| 74 |
} |
| 75 |
}, |
| 76 |
"name": "string.quoted.double.xml" |
| 77 |
}, |
| 78 |
"singlequotedString": { |
| 79 |
"begin": "'", |
| 80 |
"beginCaptures": { |
| 81 |
"0": { |
| 82 |
"name": "punctuation.definition.string.begin.xml" |
| 83 |
} |
| 84 |
}, |
| 85 |
"end": "'", |
| 86 |
"endCaptures": { |
| 87 |
"0": { |
| 88 |
"name": "punctuation.definition.string.end.xml" |
| 89 |
} |
| 90 |
}, |
| 91 |
"name": "string.quoted.single.xml" |
| 92 |
} |
| 93 |
} |
| 94 |
} |
| 95 |
|