mirror of
https://github.com/DataTables/DataTables.git
synced 2025-02-07 05:54:15 +01:00
Dev: Plain syntax highlighting
This commit is contained in:
parent
6cac556b6a
commit
85111b709c
@ -1 +1 @@
|
|||||||
27bfabdcecb11ea4891db9e8ff07eca4a2b5673e
|
2ba655415c1cedd01495de0dce50a5213a7f157b
|
||||||
|
19
examples/resources/syntax/shCore.js
vendored
19
examples/resources/syntax/shCore.js
vendored
@ -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();
|
SyntaxHighlighter.all();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user