Update to 8.0
This commit is contained in:
@@ -4,38 +4,36 @@
|
||||
Author: Ivan Sagalaev <maniac@softwaremaniacs.org>
|
||||
*/
|
||||
|
||||
hljs.LANGUAGES['http'] = function(hljs) {
|
||||
function(hljs) {
|
||||
return {
|
||||
defaultMode: {
|
||||
illegal: '\\S',
|
||||
contains: [
|
||||
{
|
||||
className: 'status',
|
||||
begin: '^HTTP/[0-9\\.]+', end: '$',
|
||||
contains: [{className: 'number', begin: '\\b\\d{3}\\b'}]
|
||||
},
|
||||
{
|
||||
className: 'request',
|
||||
begin: '^[A-Z]+ (.*?) HTTP/[0-9\\.]+$', returnBegin: true, end: '$',
|
||||
contains: [
|
||||
{
|
||||
className: 'string',
|
||||
begin: ' ', end: ' ',
|
||||
excludeBegin: true, excludeEnd: true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
className: 'attribute',
|
||||
begin: '^\\w', end: ': ', excludeEnd: true,
|
||||
illegal: '\\n',
|
||||
starts: {className: 'string', end: '$'}
|
||||
},
|
||||
{
|
||||
begin: '\\n\\n',
|
||||
starts: {subLanguage: '', endsWithParent: true}
|
||||
}
|
||||
]
|
||||
}
|
||||
illegal: '\\S',
|
||||
contains: [
|
||||
{
|
||||
className: 'status',
|
||||
begin: '^HTTP/[0-9\\.]+', end: '$',
|
||||
contains: [{className: 'number', begin: '\\b\\d{3}\\b'}]
|
||||
},
|
||||
{
|
||||
className: 'request',
|
||||
begin: '^[A-Z]+ (.*?) HTTP/[0-9\\.]+$', returnBegin: true, end: '$',
|
||||
contains: [
|
||||
{
|
||||
className: 'string',
|
||||
begin: ' ', end: ' ',
|
||||
excludeBegin: true, excludeEnd: true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
className: 'attribute',
|
||||
begin: '^\\w', end: ': ', excludeEnd: true,
|
||||
illegal: '\\n|\\s|=',
|
||||
starts: {className: 'string', end: '$'}
|
||||
},
|
||||
{
|
||||
begin: '\\n\\n',
|
||||
starts: {subLanguage: '', endsWithParent: true}
|
||||
}
|
||||
]
|
||||
};
|
||||
}(hljs);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user