-
as seen on Stack Overflow
- Search for 'Stack Overflow'
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 link like: 'example.com/my-mode#line-69' or something like that...
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Most PHP Developers are likely familar with the Syntax Highlighter called "GeSHi", which takes code, highlights it, with the use of HTML and CSS:
include('geshi.php');
$source = 'echo "hello, world!";
$language = 'php';
$path = 'geshi/';
$geshi = new GeSHi($source, $language, $path);
echo $geshi->parse_code();
GeSHi…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
In config.php, if i uncomment the following line
$config->useGehsi();
Suddenly, when I load up a C# file, instead of showing the document, it's just a blank page. As soon as I comment out the code above, I'm able to see my C# file, but there's no syntax highlighting.
Anyone have a solution…
>>> More
-
as seen on Programmers
- Search for 'Programmers'
I have 3 questions about the GPL here:
If I use GPL software in my application, but don't modify or distribute it, do I have to release my application under the GPL?
What if I modify some software that my application uses. Then do I have to release my application under the GPL, or can I just supply…
>>> More
-
as seen on Programmers
- Search for 'Programmers'
I have 3 questions about the GPL here:
If I use GPL software in my application, but don't modify or distribute it, do I have to release my application under the GPL?
What if I modify some software that my application uses. Then do I have to release my application under the GPL, or can I just supply…
>>> More