How To Apply Ctexthighlighter To Part Of The Text

Hello , How can i implement part of a text in ctexthighlighter. for eg in a blogging system… i am posting some code and description of the code through a textarea. i want only the code section to be highlighted. so what can i do ?




$this->beginWidget('system.web.widgets.CTextHighlighter',array(

	'language'=>$language,

	'showLineNumbers'=>$showLineNumbers,

));

echo $postedcontent;

$this->endWidget()

Is there any synatax for that. like


<code> code goes here ..</code> the description is here...

You can highlight your HTML web page text in the color of your choice by adding the STYLE attribute to your HTML code.

Copy and paste the following code into the HTML portion of your web page where you would like the text to appear:


<SPAN style="BACKGROUND-COLOR: #ffff00">Example of highlighted text</SPAN>

You can change the colors to whatever you’d like, but keep in mind, the text must be visible through the background color.

using mark tag


<p>Do not forget to buy <mark>milk</mark> today.</p>

so write a class using this or use simply like this!!