Sha256: 8c2abbda298d5323b19f83beb4c07faa8622f1fc34eaa5bfce3b60d380a52fa3
Contents?: true
Size: 1.08 KB
Versions: 2
Compression:
Stored size: 1.08 KB
Contents
/* Language: JSON Author: Ivan Sagalaev <maniac@softwaremaniacs.org> */ hljs.LANGUAGES['json'] = function(hljs) { var LITERALS = {literal: 'true false null'}; var TYPES = [ hljs.QUOTE_STRING_MODE, hljs.C_NUMBER_MODE ]; var VALUE_CONTAINER = { className: 'value', end: ',', endsWithParent: true, excludeEnd: true, contains: TYPES, keywords: LITERALS }; var OBJECT = { begin: '{', end: '}', contains: [ { className: 'attribute', begin: '\\s*"', end: '"\\s*:\\s*', excludeBegin: true, excludeEnd: true, contains: [hljs.BACKSLASH_ESCAPE], illegal: '\\n', starts: VALUE_CONTAINER } ], illegal: '\\S' }; var ARRAY = { begin: '\\[', end: '\\]', contains: [hljs.inherit(VALUE_CONTAINER, {className: null})], // inherit is also a workaround for a bug that makes shared modes with endsWithParent compile only the ending of one of the parents illegal: '\\S' }; TYPES.splice(TYPES.length, 0, OBJECT, ARRAY); return { contains: TYPES, keywords: LITERALS, illegal: '\\S' }; }(hljs);
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
highlight_js-rails4-7.4.0.4 | vendor/assets/javascripts/highlight_js/languages/json.js |
highlight_js-rails4-7.4.0.3 | vendor/assets/javascripts/highlight_js/languages/json.js |