This commit is contained in:
FlightControl
2018-10-20 12:42:00 +02:00
commit b20fa48c68
921 changed files with 997850 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
/*
Language: FIX
Author: Brent Bradbury <brent@brentium.com>
*/
function(hljs) {
return {
contains: [
{
begin: /[^\u2401\u0001]+/,
end: /[\u2401\u0001]/,
excludeEnd: true,
returnBegin: true,
returnEnd: false,
contains: [
{
begin: /([^\u2401\u0001=]+)/,
end: /=([^\u2401\u0001=]+)/,
returnEnd: true,
returnBegin: false,
className: 'attr'
},
{
begin: /=/,
end: /([\u2401\u0001])/,
excludeEnd: true,
excludeBegin: true,
className: 'string'
}]
}],
case_insensitive: true
};
}