1
0
mirror of https://github.com/DataTables/DataTables.git synced 2025-01-30 23:52:11 +01:00

Dev: Plain syntax highlighting

This commit is contained in:
Allan Jardine 2014-04-02 14:20:46 +01:00
parent 6cac556b6a
commit 85111b709c
2 changed files with 20 additions and 1 deletions

View File

@ -1 +1 @@
27bfabdcecb11ea4891db9e8ff07eca4a2b5673e
2ba655415c1cedd01495de0dce50a5213a7f157b

View File

@ -1985,4 +1985,23 @@ typeof(exports) != 'undefined' ? exports.SyntaxHighlighter = SyntaxHighlighter :
})();
;(function()
{
// CommonJS
SyntaxHighlighter = SyntaxHighlighter || (typeof require !== 'undefined'? require('shCore').SyntaxHighlighter : null);
function Brush()
{
};
Brush.prototype = new SyntaxHighlighter.Highlighter();
Brush.aliases = ['text', 'plain'];
SyntaxHighlighter.brushes.Plain = Brush;
// CommonJS
typeof(exports) != 'undefined' ? exports.Brush = Brush : null;
})();
SyntaxHighlighter.all();