Home
last modified time | relevance | path

Searched refs:brushes (Results 51 – 75 of 78) sorted by relevance

1234

/plugin/syntaxhighlighter3/sxh3/pkg/scripts/
H A DshBrushPowerShell.js71 SyntaxHighlighter.brushes.PowerShell = Brush;
H A DshBrushCss.js87 SyntaxHighlighter.brushes.CSS = Brush;
H A DshBrushGroovy.js63 SyntaxHighlighter.brushes.Groovy = Brush;
H A DshBrushPerl.js92 SyntaxHighlighter.brushes.Perl = Brush;
H A DshBrushCSharp.js61 SyntaxHighlighter.brushes.CSharp = Brush;
H A DshBrushAppleScript.js96 SyntaxHighlighter.brushes.AppleScript = Brush;
H A DshBrushHaxe.js76 SyntaxHighlighter.brushes.Haxe = Brush;
H A DshBrushSass.js95 SyntaxHighlighter.brushes.Sass = Brush;
H A DshBrushXml.js67 SyntaxHighlighter.brushes.Xml = Brush;
H A DshBrushBash.js71 SyntaxHighlighter.brushes.Bash = Brush;
H A DshCore.js1381 brushes : {}, property in sh
1928 var brushes = sh.vars.discoveredBrushes,
1932 if (brushes == null)
1934 brushes = {};
1937 for (var brush in sh.brushes)
1939 var info = sh.brushes[brush],
1950 brushes[aliases[i]] = brush;
1953 sh.vars.discoveredBrushes = brushes;
1956 result = sh.brushes[brushes[alias]];
2469 xmlBrush = new sh.brushes.Xml(),
/plugin/syntaxhighlighter3/sxh3/src/js/
H A DshBrushCSharp.js45 SyntaxHighlighter.brushes.CSharp = Brush;
H A DshBrushCss.js71 SyntaxHighlighter.brushes.CSS = Brush;
H A DshBrushGroovy.js47 SyntaxHighlighter.brushes.Groovy = Brush;
H A DshBrushPerl.js76 SyntaxHighlighter.brushes.Perl = Brush;
H A DshBrushAppleScript.js80 SyntaxHighlighter.brushes.AppleScript = Brush;
H A DshBrushSass.js79 SyntaxHighlighter.brushes.Sass = Brush;
H A DshBrushHaxe.js60 SyntaxHighlighter.brushes.Haxe = Brush;
H A DshBrushXml.js51 SyntaxHighlighter.brushes.Xml = Brush;
H A DshBrushBash.js55 SyntaxHighlighter.brushes.Bash = Brush;
/plugin/syntaxhighlighter4/
H A DCHANGELOG.md17 * New custom brushes added: halcon,IEC61131,kotlin,latex,Makefile,mel,objective-c,yaml
/plugin/syntaxhighlighter3/
H A DREADME.md40 …http://alexgorbatchev.com/SyntaxHighlighter/manual/brushes/) for a complete list of available brus…
41 Add new brushes to the scripts directory and the alias(es) and brush file name to the available bru…
/plugin/jquery-syntax/jquery-syntax/
H A Djquery.syntax.core.js26 …]);return a;};};Syntax.register=function(name,callback){var brush=Syntax.brushes[name]=new Syntax.…
78 …ents.push(name);this.rules.push({apply:function(text,expr){return Syntax.brushes[name].getMatches(…
79 …s];for(var i=0;i<this.parents.length;i+=1){klasses=klasses.concat(Syntax.brushes[this.parents[i]].…
97 ….buildTree=function(rule,text,offset,additionalMatches){var match=Syntax.brushes[rule.brush].build…
104 …in').toLowerCase();brushName=Syntax.aliases[brushName]||brushName;Syntax.brushes.get(brushName,fun…
H A Djquery.syntax.js9 …{},defaultOptions:{cacheScripts:true,cacheStyleSheets:true,theme:"base"},brushes:new ResourceLoade… property in Syntax
/plugin/syntaxhighlighter4/dist/
H A Dsyntaxhighlighter.js137 brushes: {},
270 var brushes = sh.vars.discoveredBrushes,
273 if (brushes == null) {
274 brushes = {};
277 for (var brushName in sh.brushes) {
278 var brush = sh.brushes[brushName],
289 brushes[aliases[i]] = brushName;
293 sh.vars.discoveredBrushes = brushes;
296 result = sh.brushes[brushes[alias]];
338 return sh.brushes['brush' + brushCounter++] = brush.default || brush;
[all …]

1234