I am using Joomla 1.5. and I am writing a blog in joomla and want to highlight some HTML and javascript code but when I save that article after inserting the HTML code as it is, it gets exicuted itself. I also tried it with codecitation plugin but no result. If you people have any solution then please reply.

link|improve this question

43% accept rate
what was wrong with the codecitation plugin? – WooDzu Nov 30 '11 at 9:47
I answered this question exactly how you should do it. Install the Blank Module extension/module, and put your code in there and load it in your article. – SMacFadyen Nov 30 '11 at 11:01
@WooDzu I don't know but even other plugin with same functionality is not working. Actually it is working well to highlighting other code but only problem with HTML and JavaScript. – RoyalEnfy Nov 30 '11 at 11:29
@SMacFadyen I have tried that also using Custom HTML module. But what the problem is that HTML code is executed in that custom HTML module also. – RoyalEnfy Nov 30 '11 at 11:32
feedback

4 Answers

Use a <pre> tag it should work. e.g.

<pre>&lt;html&gt;&lt;\html&gt;</pre>
link|improve this answer
I have tried <pre> <code> but not working – RoyalEnfy Dec 1 '11 at 7:12
how did you enter the code? did you use toggle editor.? – Sara Dec 1 '11 at 9:19
I enter the code in HTML window(window that opens after clicking HTML button) – RoyalEnfy Dec 1 '11 at 9:56
2  
:( It is working for me. – Sara Dec 1 '11 at 10:38
Really :), don't know why it is not working for me. are you working on joomla 1.5? – RoyalEnfy Dec 1 '11 at 10:44
show 2 more comments
feedback

You can use <pre> and <code> tags. Also Joomla has a native plugin to display code and syntax highlighting, based on the Geshi project. It's easy to use, just be sure it is enabled in your plugins config:

<pre lang="html" >
<p> some text </p>
</pre >

Hope it helps!

link|improve this answer
I was not aware about Geshi project thanks for that, but the problem not solved yet. – RoyalEnfy Dec 1 '11 at 9:57
feedback

In your blog try "& lt;" (without space) to write < and "& gt;" (without space) to write > in your HTML Code.

This syntax is used to write "<" and ">" symbols on some web page. Otherwise it will treat your code as part of the blog article and will show its output.

link|improve this answer
It works only for ones but when i save that page and again open to update, that code is executed. – RoyalEnfy Nov 30 '11 at 7:47
feedback

Use the a jQuery highlighter.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.