Initial commit.
Signed-off-by: Andreas Widen <aw@luflow.net>
This commit is contained in:
commit
a4a5c7daa5
1389 changed files with 241399 additions and 0 deletions
47
static/highlight/es/languages/fix.js
Normal file
47
static/highlight/es/languages/fix.js
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
/*! `fix` grammar compiled for Highlight.js 11.11.1 */
|
||||
var hljsGrammar = (function () {
|
||||
'use strict';
|
||||
|
||||
/*
|
||||
Language: FIX
|
||||
Author: Brent Bradbury <brent@brentium.com>
|
||||
*/
|
||||
|
||||
/** @type LanguageFn */
|
||||
function fix(hljs) {
|
||||
return {
|
||||
name: 'FIX',
|
||||
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
|
||||
};
|
||||
}
|
||||
|
||||
return fix;
|
||||
|
||||
})();
|
||||
;
|
||||
export default hljsGrammar;
|
||||
Loading…
Reference in a new issue