Tagged Questions
The geshi tag has no wiki summary.
6
votes
6answers
350 views
Seeking code highlighter recommendation for WordPress
Can anybody recommend a reliable and decently documented code highlighter for WordPress 2.6.1. I have tried Code Snippet by Roman Roan and Developer Formatter by Gilberto Saraiva. But they don't seem ...
5
votes
5answers
987 views
Syntax Highlighter for Java
As you know there is a Syntax highlighter for PHP called GeSHi which supports a great number of Programming Languages or Code formats.
However, I couldn't find such a library for Java which supports ...
3
votes
1answer
205 views
Geshi syntax highlighting for the R programming language
Does Geshi support the R programming language?
This table (Geshi for MediaWiki) does not list R, so I guess the answer is no, but I just wanted to check. Is there any programming language with a ...
2
votes
1answer
246 views
Indenting code in MediaWiki
Is it possible to indent a block of code in MediaWiki using SyntaxHighlight GeSHi?
For example, I would like the code container below to be aligned with the third-level list
* This is plain text of ...
2
votes
1answer
148 views
(drupal) ckeditor breaks my blockcode tags
I'm using blockcode and geshi module on my blog to highlight syntax in my posts. but everytime i edit a post with blockcode tags i have to disable ckeditor, because otherwise it will break my code, it ...
2
votes
4answers
1k views
Syntax Highlighting in Drupal
Which is the best module for Syntax Highligting in Drupal.
I am using GeSHi for syntax highlighting my code. It was working fine then I installed a second module FCKeditor. Now GeSHi filter is not ...
1
vote
1answer
128 views
Lua long strings not displaying correctly using geshi syntax highlighting
I am storing my new Lua code in to a Dokuwiki system which uses the geshi highlighter (written in php). How ever I am having a problem with long string definitions in lua for example
strLong = [[If ...
0
votes
1answer
15 views
Using geshi inside a textarea
Yes, sound weird. But I'm trying to make a text editor inside the browser. I've seen some programs use it. Like wordpress and unet. But I'm not sure if they use a custom one or not.
However, this ...
0
votes
1answer
80 views
How to highlight codechanges in geshi
I have a running dokuwiki and am working with code-blocks like:
<code php>
<?php
function addOne($testparam) {
global $test;
$test = $test + $testparam;
}
?>
</code>
I now ...
0
votes
0answers
71 views
Custom skin in mediawiki
I'm trying to make SyntaxHighlight GeSHi work with a custom skin. The problem is that the skin does not output the extension's custom CSS. GeSHi uses this to output its custom CSS:
...
0
votes
2answers
24 views
Where do I submit a feature proposal for MediaWiki GeSHi extension?
GeSHi Sourceforge group redirects MediaWiki-related issues to MediaWiki. MediaWiki redirects requests & features back to SourceForge.
I modified my install to parse PHP blocks allowing to ...
0
votes
2answers
798 views
Changing the font size of code formatted by SyntaxHighlight GeSHi in MediaWiki
The font size of my code snippets are too small relative to the default font size of the Wiki, which makes them hard to read (see below for an example). Is there anything I can do to change it?
...
0
votes
2answers
330 views
Drupal: Trying to use GeSHi with CKeditor
I was hoping to use CKeditor with GeSHi, but I'm having some major difficulties. What happens is, if I create a new piece of content, then, disable CKeditor so I'm just writing plain HTML, I can ...
0
votes
2answers
192 views
Geshi with Markdown
Im trying to get GeSHi to work with markdown.
A simple use for Geshi is as follows:
$geshi = new GeSHi($message, 'c');
print $geshi->parse_code();
The above code takes in the whole of message ...
0
votes
3answers
213 views
Advice for implementing simple regex (for bbcode/geshi parsing)
I had made a personal note software in PHP so I can store and organize my notes and wished for a nice simple format to write them in.
I had done it in Markdown but found it was a little confusing ...
0
votes
1answer
36 views
GeSHi single like link
Is it possible to instruct GeSHi (http://qbnz.com/highlighter/) to generate link to single line. For example if I show highlighted code on 'example.com/my-code' URL, I would like to be able to have ...