This repository has been archived on 2021-11-25. You can view files and clone it, but cannot push or open issues/pull-requests.
CodePaste/web/htdocs/js/shBrushPlain.js

18 lines
372 B
JavaScript

;(function()
{
// CommonJS
typeof(require) != 'undefined' ? SyntaxHighlighter = 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;
})();