]> luflow.net public git repositories - flow-web.git/blob - static/highlight/es/languages/fix.js
Initial commit.
[flow-web.git] / static / highlight / es / languages / fix.js
1 /*! `fix` grammar compiled for Highlight.js 11.11.1 */
2 var hljsGrammar = (function () {
3 'use strict';
4
5 /*
6 Language: FIX
7 Author: Brent Bradbury <brent@brentium.com>
8 */
9
10 /** @type LanguageFn */
11 function fix(hljs) {
12 return {
13 name: 'FIX',
14 contains: [
15 {
16 begin: /[^\u2401\u0001]+/,
17 end: /[\u2401\u0001]/,
18 excludeEnd: true,
19 returnBegin: true,
20 returnEnd: false,
21 contains: [
22 {
23 begin: /([^\u2401\u0001=]+)/,
24 end: /=([^\u2401\u0001=]+)/,
25 returnEnd: true,
26 returnBegin: false,
27 className: 'attr'
28 },
29 {
30 begin: /=/,
31 end: /([\u2401\u0001])/,
32 excludeEnd: true,
33 excludeBegin: true,
34 className: 'string'
35 }
36 ]
37 }
38 ],
39 case_insensitive: true
40 };
41 }
42
43 return fix;
44
45 })();
46 ;
47 export default hljsGrammar;