SyntaxHighlighter is a code coloring JavaScript library made by Alex Gorbatchev. The syntaxes supported include Java, Javascript, XML, C#, C++, PHP, Perl, SQL and many more.

learn more… | top users | synonyms

1
vote
0answers
8 views

JQuery SyntaxHighLighter Plugin in tinyMCE iframe

i find a question about SyntaxHighlighter . But , i'm talking about the jquery plugin and Not https://github.com/RichGuk/syntaxhl I want to highlight source code in tinyMCE I add the following ...
0
votes
0answers
8 views

Why SyntaxHighlighter replace blank line with invisible character?

I use SyntaxHighlighter 3.0.83 to format C/C++/JAVA code. If the code contains some blank lines, SyntaxHighlighter replace them with some invisible characters. So when I double click mouse button, ...
0
votes
0answers
12 views

Strange Happenings With SyntaxHighlighter On Blogger

I've added SyntaxHighlighter to my blog powered by Blogger. First, all single quotes within a <pre> tag, is converted to double quotes on viewing the post. However, when I edit the post, the ...
0
votes
0answers
14 views

Two dots in syntaxhighlighter

Every time I type two dots inside pre tags in Alex Gorbatchev's Syntaxhighlighter, they magically disappear. If I try to escape them, \ signs appear. What should I do?
4
votes
2answers
160 views

What is the fastest way to create a cross-platform IDE for a new programming language?

The title already says most of what I'm after, but let me state some of the requirements explicitly: The language is not widely used, so writing a new language tokenizer etc is assumed to probably ...
0
votes
1answer
33 views

I'm using nodejs express to build a blog, and this blog can write by markdown, how to add code highlihgter to it?

I'm using nodejs express to build a blog which can write by markdown, how to add code highlighter to it? I try to use syntaxhighlighter.js to make it done, but it can't work. Because it need write ...
1
vote
1answer
64 views

Wordpress + Advanced Custom Fields + ACE Editor Plugin

I'm trying to do a syntax highlighter combined with ACF + ACE editor for WordPress based on this guide. I've done this: <?php class acf_field_ace_code_editor extends acf_field { // vars ...
1
vote
0answers
32 views

ExtJs4: Panel : SQL SyntaxHighlighter: No scrollbars/wrapping of lines

I am using an ExtJs Panel to display an SQL query on the screen. For highlighting the query I am using SyntaxHighlighter. Problem: I am not getting scrollbars in the panel even after setting ...
1
vote
1answer
20 views

SyntaxHighlighter.highlight() does not cause syntax highlighting on modified content within pre

This is my situation, I have a pre tag which I populate with content to be highlighted, when I populate the pre tag with content on the page load it works, highlighting and all. However if after the ...
0
votes
0answers
12 views

highlight or select duplicate code in java source code

I want to develop a simple plugin which can find duplicate code in java source code.Please provide some basic help which need to develop such kind of plugin to show duplicate code to users. Thanks ...
1
vote
0answers
42 views

how to export brushes(java, sql, c) to a pdf file while using syntaxHighlighter

I want to export html data to pdf file. I also need to export some java code to pdf file and that java code should be displayed with syntaxhighlighter classes but it is not. e.g. this text is to ...
0
votes
0answers
28 views

Include HTML in SyntaxHighlighter output?

I'm using the SyntaxHighlighter JavaScript library (version 3.0.83). I'd love to be able to put some HTML into the code that I want formatted & have that HTML be 'passed through' to the final ...
0
votes
1answer
75 views

How to create dynamic content within syntaxhighlighter

I want to display a property name based on user input and display this inside of SyntaxHighlighter. Another post says this is supposed to be easy. JS $('#inputText').keyup(function () { ...
0
votes
1answer
50 views

SyntaxHighlighter is null

I am using SyntaxHighlighter. I followed the installation steps and I'm receiving a few errors in the firebug console: TypeError: SyntaxHighlighter is null ReferenceError: XRegExp is not ...
1
vote
1answer
23 views

How to disable built-in code box when using Syntaxhighlighter3?

I'm using Dokuwiki and want to get rid built-in code box (boxes with grey outline) when using Syntaxhighlighter3. Appreciate if anyone know how to do this.
0
votes
0answers
19 views

SyntaxHighlighter Plugin not working on Wordpress

I had a plugin called "Prettify GC Syntax Highlighter" that was working OK, but it suddenly stopped working. I thought it might be the plugin, but when I switched over to Syntax Highlighter Plugin, ...
0
votes
1answer
70 views

BlogEngine Syntax Highlighter broken with CoolBlue theme

I have recently installed a fresh copy of BlogEngine 2.7. I have been trying to add a new post with some c# code on it, and I wanted to use the Syntax Highlighter extension on my post. This is the ...
0
votes
0answers
41 views

Can't get SyntaxHighlighter to work in OSX, or in certain browsers

I'm following a tutorial on wp.tutsplus.com. I am copy/pasting a lot of code and would like to use the copy to clipboard button in the SyntaxHighlighter toolbar. This works for me in Windows but not ...
0
votes
2answers
247 views

JavaScript errors in IE8 with different Primefaces component

We are getting JS (apparently jQuery) errors in IE8 when trying to close a p:growl or it is trying to autohide (sticky=false) when using effect attribute on various pf component (e.g. p:calendar) ...
0
votes
0answers
56 views

use SyntaxHighlighter 3.0.83,I find somes bugs

As the image says,after line 177,we can not find the line num.For convenience,here is the problem.
0
votes
1answer
291 views

JTextPane Syntax-Highlighting

I'm currently working on a really simple IDE meant for C programming in Java. And by simple I mean it has minor code-guessing (Similar to Eclipse), some minor auto-completion (Once again, think ...
0
votes
1answer
84 views

Indenting Syntax Highlighter when starting with a php echo

I am using Alex Gorbatchev's Syntax Highlighter to output some code, but I'm getting an issue where it's not retaining the initial indentation if I start the line with a php echo. For example where I ...
1
vote
0answers
62 views

syntax highlighting in a lightswitch textbox

Does anyone know how to add syntax highlighting in a lightswitch textbox? I suspect it does not exist, so does anyone have any suggestions where to start if I would like to add the feature?
1
vote
1answer
150 views

enable linebreaks in SyntaxHighlighter without breaking line numbers [duplicate]

SyntaxHighlighter displays lines without linebreaks. Long lines are display in one line and a horizontal scrollbar is added to the container. I don't want that scrollbar and I'm able to force line ...
0
votes
0answers
49 views

Getting gwt-syntaxhighlighter to work

I've been struggling to get the GWT wrapper of Syntaxhighlighter to work. I got the libraries off http://code.google.com/p/gwt-syntaxhighlighter/, but none of them seem to be working. I'm starting to ...
0
votes
0answers
47 views

how to integrate syntaxhighlighter into your ide

this is strictly speaking not a programming question, but was wondering if i could get some help on using 'syntaxhighlighter' so that my IDE would also look like that. ...
6
votes
2answers
933 views

Blogger SyntaxHighlighter doesn't work at all

I've been trying to install SyntaxHighlighter 3.0.83 on Blogger for couple hours. I've tried many tutorials but it still doesn't work. I mean it looks just as normal text inserted nto pre tag. I ...
-1
votes
1answer
202 views

How to change font size in Alex's Gorbatchev SyntaxHighlighter? [closed]

I've tried to change the font sizes in Alex Gorbatchev's SyntaxHighlighter .css theme files, and used font-size in the <pre> tag, etc, but nothing happens. The size won't change. PD: this is ...
0
votes
1answer
65 views

How to add an older version of syntaxhighlighter

I have added the latest version of Syntax Highlighter (http://alexgorbatchev.com/SyntaxHighlighter/) for my site and it looks like this I have seen in some blogs a Syntax Highlighter version with ...
0
votes
0answers
20 views

How to get the total number of lines with SyntaxHighlighter

Is it possible to have the total number of lines of a sourcecode using SyntaxHighlighter (http://alexgorbatchev.com/SyntaxHighlighter/) please ? I could use the technique defined here : How to get ...
1
vote
2answers
64 views

SyntaxHighlighter with php to load page?

I am attempting to use Alex Gorbatchevs Syntax Highlighter in conjunction with a variety of java examples. Instead of copying and pasting each example into its own html page, I would love to use php ...
20
votes
4answers
963 views

Extra Lines using SyntaxHighlighter for Chrome Only?

Extra lines are being inserted when I am using Chrome to look at a draft blog post (on blogger) that uses syntax highlighter e.g. But on IE it looks fine: Any ideas what I am doing wrong here? ...
1
vote
1answer
95 views

Overflow issue with SyntaxHighlighter and a fixed element

I have a fixed element on a page I'm developing. It contains a logo and a couple of navigation links. On the said site, I need to present snippets of code in various languages. I'm using Alex ...
0
votes
1answer
193 views

Syntaxhighlighter is not working on blogger

Hi I've used following links: http://www.cyberack.com/2007/07/adding-syntax-highlighter-to-blogger.html I followed step by step but I couldn't get it working on my blog. It prints as its whatever is ...
0
votes
1answer
179 views

Syntax highlighter doesn't work in blog feeds and mobile version

I have been using syntax highlighter for my blogs which are hosted on Blogger.com, but recently I noticed that the code which has been highlighted by syntax highlighter doesn't appear on blog's feed ...
1
vote
1answer
149 views

How to load Syntax Highlighter on pages which contains pre tag ?

i am a Blogger and sometime's i need to demonstrate codes on my blog, so i used a Syntax Highlighter by Alex Gorbatchev. But the problem is that the files loads in each and every page of my Blog and ...
0
votes
4answers
2k views

how to setup syntax highlighter on blogger

how to setup syntax highlighter on blogger new interface.I did try with many options but till didn't work.please give any suggestions .
3
votes
1answer
79 views

what kind of vulnerably scan is this?

Some of the 404 error logs I see on my website are obviously caused by vulnerably scanners and in most cases, I can understand what it is scanning! (and it's mainly about sql-injection) However I've ...
-2
votes
1answer
544 views

creating a code editor with visual studio 2010 using C# [closed]

I am trying to make a code editor winforms application for features like syntax highlighting,and many more code editing features using visual studio 2010.I used scintillaNet with my visual studio ...
2
votes
1answer
1k views

IE bug with SyntaxHighlighter and jQuery - “Unable to get value of the property 'slice': object is null or undefined”

I really love SyntaxHighter - it turns out the poshest looking code around. Unfortunately I've barked my shins against an appalling JS error in IE7 and IE8 which is going to prevent me using this ...
0
votes
1answer
52 views

syntaxhighlighter on blogger: the platform closes tags that it thinks are HTML? How can I fix that?

you can see tha in my blog: http://newbufferedwriter.blogspot.com/2012/03/risolutore-solitario-klondike-codice.html , blogger thinks that all #include directives from the standard library (so with the ...
0
votes
1answer
107 views

link, script tags between </body> and </html>

I've just started using SyntaxHighlighter. I looked at their HTML source code for this page and noticed that they put some link and script tags between </body> and </html>. I guess it ...
1
vote
2answers
244 views

SyntaxHighlighter 3.0.83 on Blogger splits my source code

I'm trying to use SyntaxHighlighter 3.0.83 on Blogger in order to highlight some simple java code but my single java line is split in many chunks. Here's what I did to set it up: Blogger: Design | ...
1
vote
0answers
275 views

How to create a custom toolbar for SyntaxHighlighter 3.0.83?

I am trying to create a custom toolbar for SyntaxHighlighter 3, but have been unable to figure out how to do so. I've seen custom toolbars before but only for version 2. I don't care if it is either a ...
0
votes
3answers
544 views

alex gorbatchev's syntax highlighter giving an error message

I'm getting the following error message in Chrome and firefox while trying to implement gorbachev's syntax highlighter. The page at local host says: SyntaxHighlighter Can"t find brush for: php ...
0
votes
2answers
291 views

alex gorbatchev's syntax highlighter not working for me

I'm just posting my entire page to prevent confusion. I've stared at each link and checked the folder for the files. it all seems to be there. what's not working? very frustrated, could use a fresh ...
3
votes
0answers
411 views

Aptana Studio 3: How to get Syntax Highlighting of Shell Scripts *.sh

Is there any "Formatter" / syntanx highlighting for linux shell script available for Aptana Studio 3 ?!? I did find "shelled" but this seems only to work with eclipse and not aptana studio 3 ...
5
votes
2answers
2k views

SyntaxHighlighter: How to remove the lime-colored question mark or at least change its color?

Well, the green question mark does not go with my website color scheme. How do I change/remove it? You can see it here: http://alexgorbatchev.com/SyntaxHighlighter/manual/installation.html Thanks!
1
vote
0answers
115 views

getting syntaxhighlighter to recognize html added by javascript?

I'm trying to make a wysiwyg editor of sorts.. I want to be able to preview code snippets I am putting into my website before posting them. I have gotten syntaxhighlighter to work properly.. But I ...
2
votes
2answers
823 views

Syntaxhighlighter can't find any brushes after ajax request

I'm using Syntaxhighlighter on a web page, I have made a javascript function to load all brushes using SyntaxHighlighter.autoloader(...) and apply SyntaxHighlighter.all() I run this function once ...

1 2