You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
541 B
28 lines
541 B
module.exports = function(hljs){
|
|
return {
|
|
contains: [
|
|
// Attribute
|
|
{
|
|
className: 'attribute',
|
|
begin: /</, end: />/
|
|
},
|
|
// Specific
|
|
{
|
|
begin: /::=/,
|
|
starts: {
|
|
end: /$/,
|
|
contains: [
|
|
{
|
|
begin: /</, end: />/
|
|
},
|
|
// Common
|
|
hljs.C_LINE_COMMENT_MODE,
|
|
hljs.C_BLOCK_COMMENT_MODE,
|
|
hljs.APOS_STRING_MODE,
|
|
hljs.QUOTE_STRING_MODE
|
|
]
|
|
}
|
|
}
|
|
]
|
|
};
|
|
}; |