1;(function() 2{ 3 // CommonJS 4 SyntaxHighlighter = SyntaxHighlighter || (typeof require !== 'undefined'? require('shCore').SyntaxHighlighter : null); 5 6 function Brush() 7 { 8 }; 9 10 Brush.prototype = new SyntaxHighlighter.Highlighter(); 11 Brush.aliases = ['text', 'plain']; 12 13 SyntaxHighlighter.brushes.Plain = Brush; 14 15 // CommonJS 16 typeof(exports) != 'undefined' ? exports.Brush = Brush : null; 17})(); 18