Home
last modified time | relevance | path

Searched refs:geshi (Results 1 – 25 of 25) sorted by relevance

/plugin/ckgedit/ckeditor/plugins/geshi/dialogs/
Dgeshi.js1geshi.window_title,minWidth:600,minHeight:350,contents:[{id:"tab-basic",label:k.lang.geshi.basic_s…
Dgeshi.js.unc71 title: editor.lang.geshi.window_title,
80 label: editor.lang.geshi.basic_settings,
89 id: 'geshi',
90 label: editor.lang.geshi.code,
92 validate: CKEDITOR.dialog.validate.notEmpty(editor.lang.geshi.code_empty)
101 label: "Select language", //editor.lang.geshi.lang,
112geshi.tooltip+"' style = 'color:blue;text-decoration:underline;' onmouseover='this.style.cursor=\…
131 label: editor.lang.geshi.file || 'File name',
137 label: editor.lang.geshi.which,
138 …items: [ [ editor.lang.geshi.codeblock, 'block' ], [ editor.lang.geshi.snippet, 'snippet' ], [ edi…
[all …]
/plugin/code2/
Dsyntax.php867 $geshi = new GeSHi($aData[1], $aData[2], GESHI_LANG_ROOT);
868 if ($geshi->error()) {
870 $geshi = NULL; // release memory
875 $geshi->enable_classes();
876 $geshi->set_encoding('utf-8');
877 $geshi->set_header_type(GESHI_HEADER_PRE);
878 $geshi->set_overall_class('code ' . $aData[2]);
881 $geshi->set_link_target($conf['target']['extern']);
885 $aData[1] = explode('>', $geshi->parse_code(), 2);
888 $geshi = NULL; // release memory
[all …]
/plugin/ckgdoku/ckeditor/plugins/geshi/dialogs/
Dgeshi.js1geshi.code,validate:CKEDITOR.dialog.validate.notEmpty(k.lang.geshi.code_empty)},{type:"hbox",width…
Dgeshi.js.unc88 id: 'geshi',
89 label: editor.lang.geshi.code,
91 validate: CKEDITOR.dialog.validate.notEmpty(editor.lang.geshi.code_empty)
100 label: "Select language", //editor.lang.geshi.lang,
112geshi.tooltip+"' style = 'color:blue;text-decoration:underline;' onmouseover='this.style.cursor=\…
130 label: editor.lang.geshi.file || 'File name',
136 label: editor.lang.geshi.which,
137 … items: [ [ editor.lang.geshi.codeblock, 'block' ], [ editor.lang.geshi.snippet, 'snippet' ] ],
158 dialog.getContentElement( 'tab-basic', 'geshi' ).setValue( text );
172 var text = dialog.getValueOf( 'tab-basic', 'geshi' );
/plugin/xssnipper/
Dsyntax.php128 $geshi = new GeSHi($code_lines, $xssnipper['type']);
129 $geshi->enable_line_numbers(GESHI_NORMAL_LINE_NUMBERS);
130 $geshi->set_overall_class('xssnipper');
131 $geshi->set_header_type(GESHI_HEADER_DIV);
133 $geshi->start_line_numbers_at($xssnipper['from']);
136 $text = $geshi->parse_code();
/plugin/codedoc/
Dblock.php12 var $geshi = false; variable in syntax_plugin_codedoc_block
98 list($match, $this->geshi) = explode(':',$match);
99 $match = "$match " . $this->geshi;
105 if($this->geshi) {
106 $renderer->doc .= p_xhtml_cached_geshi($match, $this->geshi,'');
/plugin/repo/
Dsyntax.php205 $geshi = new GeSHi($code, strtolower($lang), DOKU_INC .'vendor/geshi/geshi/src/geshi');
206 $geshi->set_encoding('utf-8');
207 $geshi->enable_classes();
208 $geshi->set_header_type(GESHI_HEADER_PRE);
209 $geshi->set_overall_class("code $language");
210 $geshi->set_link_target($conf['target']['extern']);
212 $hi_code = $geshi->parse_code();
/plugin/src/
Dsyntax.php118 $geshi = new GeSHi($code, $lang, DOKU_INC . 'inc/geshi');
119 $geshi->set_encoding('utf-8');
120 $geshi->enable_classes();
121 $geshi->set_header_type(GESHI_HEADER_PRE);
122 $geshi->set_link_target($conf['target']['extern']);
125 $code = trim(preg_replace('!^<pre[^>]*>|</pre>$!', '', $geshi->parse_code()), "\n\r");
Dplugin.info.txt6 desc Includes a source uploaded file using the geshi highlighter
/plugin/projects/lib/
Dtools.php69 $geshi = new GeSHi($code, $lang);
70 $geshi->set_header_type(GESHI_HEADER_DIV);
71 $geshi->enable_line_numbers(GESHI_NORMAL_LINE_NUMBERS);
72 $renderer->doc .= $geshi->parse_code();
/plugin/ckgdoku/ckeditor/plugins/geshi/
Dplugin.js24 label: editor.lang.geshi.title,//'Insert Geshi',
/plugin/ckgedit/ckeditor/plugins/geshi/
Dplugin.js24 label: editor.lang.geshi.title,//'Insert Geshi',
/plugin/rstudio/
Dplugin.info.txt6 desc inserts rstudio parameter into code blocks for RStudio geshi css
/plugin/pycode/
Dmethod.php327 $geshi = new GeSHi($code, $lang, $lib_geshi);
328 $geshi->set_encoding("utf-8");
329 $geshi->enable_classes();
330 $geshi->set_header_type(GESHI_HEADER_PRE);
332 $geshi_code = trim(preg_replace('!^<pre[^>]*>|</pre>$!','',$geshi->parse_code()),"\n\r");
/plugin/stale/
DREADME.md17 …g) - [For Geshi](https://forum.dokuwiki.org/d/20833-how-to-make-change-to-geshi-language-file-have…
36 …ache for [Geshi](https://forum.dokuwiki.org/d/20833-how-to-make-change-to-geshi-language-file-have…
/plugin/codebutton2/
Dadmin.php60 …lbar the following format:<br><pre class="code">&lt;button name&gt; = &lt;geshi code name&gt;<br><…
/plugin/odp/
Drenderer.php978 $geshi = new GeSHi($text, $language, DOKU_INC . 'inc/geshi');
979 $geshi->set_encoding('utf-8');
981 $geshi->set_header_type(GESHI_HEADER_PRE);
982 $geshi->enable_keyword_links(false);
986 … $highlighted_code = trim(preg_replace('!^<pre[^>]*>|</pre>$!','',$geshi->parse_code()),"\n\r");
/plugin/ckgedit/scripts/
Dparse_wiki.js.unc313 geshi: false,
551 this.geshi = true;
1272 if (this.geshi) {
1273 this.geshi = false;
1491 var geshi = text.match(/^\s*geshi:\s+(.*)$/m);
1492 if (geshi) {
1493 … results = results.replace(/<(code|file)>\s*$/, '<' + "$1" + ' ' + geshi[1] + '>');
1494 text = text.replace(geshi[0], "");
Dparse_wiki-cmpr.js1geshi:false,downloadable_code:false,export_code:false,code_snippet:false,downloadable_file:"",exte… property
/plugin/ckgdoku/scripts/
Dparse_wiki.js.unc226 geshi: false,
462 this.geshi = true;
1250 if(this.geshi) {
1251 this.geshi = false;
1485 var geshi =text.match(/^\s*geshi:\s+(.*)$/m);
1486 if(geshi) {
1487 … results= results.replace(/<(code|file)>\s*$/, '<' + "$1" + ' ' + geshi[1] + '>');
1488 text = text.replace( geshi[0], "");
Dparse_wiki-cmpr.js1geshi:false,downloadable_code:false,export_code:false,code_snippet:false,downloadable_file:"",exte… property
/plugin/fckg/
DChanges108 Created an IE CSS hack for geshi snippets in IE8+ and HTML5
273 Corrected fckconfig.js to use editor/lang/<iso.js> files for geshi and keyboard plugins.
283 missing span tag in geshi plugin.
/plugin/ckgdoku/ckeditor/
Dconfig.js.unc106 …s = 'signature,footnote,shortcuts,fontAssist,tags,timestamp,headerbuttons,geshi,wrap'; //,pasteba…
/plugin/ckgedit/ckeditor/
Dconfig.js.unc111 …s = 'signature,footnote,shortcuts,fontAssist,tags,timestamp,headerbuttons,geshi,wrap,truetype'; //…