Update to 8.0
This commit is contained in:
@@ -2,33 +2,32 @@
|
||||
Language: Ini
|
||||
*/
|
||||
|
||||
hljs.LANGUAGES['ini'] = function(hljs) {
|
||||
function(hljs) {
|
||||
return {
|
||||
case_insensitive: true,
|
||||
defaultMode: {
|
||||
illegal: '[^\\s]',
|
||||
contains: [
|
||||
{
|
||||
className: 'comment',
|
||||
begin: ';', end: '$'
|
||||
},
|
||||
{
|
||||
className: 'title',
|
||||
begin: '^\\[', end: '\\]'
|
||||
},
|
||||
{
|
||||
className: 'setting',
|
||||
begin: '^[a-z0-9\\[\\]_-]+[ \\t]*=[ \\t]*', end: '$',
|
||||
contains: [
|
||||
{
|
||||
className: 'value',
|
||||
endsWithParent: true,
|
||||
keywords: 'on off true false yes no',
|
||||
contains: [hljs.QUOTE_STRING_MODE, hljs.NUMBER_MODE]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
illegal: /\S/,
|
||||
contains: [
|
||||
{
|
||||
className: 'comment',
|
||||
begin: ';', end: '$'
|
||||
},
|
||||
{
|
||||
className: 'title',
|
||||
begin: '^\\[', end: '\\]'
|
||||
},
|
||||
{
|
||||
className: 'setting',
|
||||
begin: '^[a-z0-9\\[\\]_-]+[ \\t]*=[ \\t]*', end: '$',
|
||||
contains: [
|
||||
{
|
||||
className: 'value',
|
||||
endsWithParent: true,
|
||||
keywords: 'on off true false yes no',
|
||||
contains: [hljs.QUOTE_STRING_MODE, hljs.NUMBER_MODE],
|
||||
relevance: 0
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
};
|
||||
}(hljs);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user