Sha256: bec0599e91f6a22940e8074a509703e3cba05b5af5e130afd21605d7a10aa35c
Contents?: true
Size: 774 Bytes
Versions: 6
Compression:
Stored size: 774 Bytes
Contents
/** * SyntaxHighlighter * http://alexgorbatchev.com/SyntaxHighlighter * * SyntaxHighlighter is donationware. If you are using it, please donate. * http://alexgorbatchev.com/SyntaxHighlighter/donate.html * * @version * 3.0.83 (July 02 2010) * * @copyright * Copyright (C) 2004-2010 Alex Gorbatchev. * * @license * Dual licensed under the MIT and GPL licenses. */ (function() { // CommonJS typeof(require) != 'undefined' ? SyntaxHighlighter = require('shCore').SyntaxHighlighter : null; function Brush() { this.regexList = []; }; Brush.prototype = new SyntaxHighlighter.Highlighter(); Brush.aliases = ['', 'null', 'nil']; SyntaxHighlighter.brushes.Null = Brush; // CommonJS typeof(exports) != 'undefined' ? exports.Brush = Brush : null; })();
Version data entries
6 entries across 6 versions & 1 rubygems