Added Library SyntaxHighlighter
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
/** @constructor */
|
||||
Libraries.SyntaxHighlighter.Brush = function (){};
|
||||
|
||||
/** @type {Object} */
|
||||
Libraries.SyntaxHighlighter.Brush.prototype;
|
||||
/** @type {Array} */
|
||||
Libraries.SyntaxHighlighter.Brush.aliases;
|
||||
/** @type {Array} */
|
||||
Libraries.SyntaxHighlighter.Brush.regexList;
|
||||
/** @type {Function} */
|
||||
Libraries.SyntaxHighlighter.Brush.forHtmlScript;
|
||||
/** @type {Function} */
|
||||
Libraries.SyntaxHighlighter.Brush.getKeywords;
|
||||
|
||||
|
||||
@@ -0,0 +1,40 @@
|
||||
/** @constructor */
|
||||
Libraries.SyntaxHighlighter = function (){};
|
||||
|
||||
/** @type {Function} */
|
||||
Libraries.SyntaxHighlighter.all;
|
||||
/** @type {Object} */
|
||||
Libraries.SyntaxHighlighter.defaults;
|
||||
/** @type {Function} */
|
||||
Libraries.SyntaxHighlighter.highlight;
|
||||
/** @type {Object} */
|
||||
Libraries.SyntaxHighlighter.Highlighter;
|
||||
|
||||
/** @type {Object} */
|
||||
Libraries.SyntaxHighlighter.brushes;
|
||||
|
||||
/** @type {Object} */
|
||||
Libraries.SyntaxHighlighter.regexLib;
|
||||
|
||||
/** @type {RegExp} */
|
||||
SyntaxHighlighter.regexLib.aspScriptTags
|
||||
/** @type {RegExp} */
|
||||
SyntaxHighlighter.regexLib.doubleQuotedString
|
||||
/** @type {RegExp} */
|
||||
SyntaxHighlighter.regexLib.multiLineCComments
|
||||
/** @type {RegExp} */
|
||||
SyntaxHighlighter.regexLib.multiLineDoubleQuotedString
|
||||
/** @type {RegExp} */
|
||||
SyntaxHighlighter.regexLib.multiLineSingleQuotedString
|
||||
/** @type {RegExp} */
|
||||
SyntaxHighlighter.regexLib.phpScriptTags
|
||||
/** @type {RegExp} */
|
||||
SyntaxHighlighter.regexLib.scriptScriptTags
|
||||
/** @type {RegExp} */
|
||||
SyntaxHighlighter.regexLib.singleLineCComments
|
||||
/** @type {RegExp} */
|
||||
SyntaxHighlighter.regexLib.singleLinePerlComments
|
||||
/** @type {RegExp} */
|
||||
SyntaxHighlighter.regexLib.singleQuotedString
|
||||
/** @type {RegExp} */
|
||||
SyntaxHighlighter.regexLib.xmlComments
|
||||
@@ -0,0 +1,2 @@
|
||||
/** @constructor */
|
||||
var Libraries = function (){};
|
||||
Reference in New Issue
Block a user