Format text of description in listings

How can I format the text in the listing description so that it includes bold, carriage returns, images etc . I have added ckeditor to my folders but can't work where to insert it?
Discussion of company’s products and Yii framework
https://monoray.net/forum/
<?php
$this->widget('application.modules.lang.components.langFieldWidget', array(
'model' => $model,
'field' => '_name_of_attribute_',
'type' => 'text-editor'
));
?>
<?php
$this->widget('application.modules.lang.components.langFieldWidget', array(
'model' => $model,
'field' => 'description',
'type' => 'text'
));
?>
<?php
$this->widget('application.modules.lang.components.langFieldWidget', array(
'model' => $model,
'field' => 'description',
'type' => 'text-editor'
));
?>
if($data->getStrByLang('description')){
echo '<p><strong>'.tt('Description').':</strong> '.CHtml::encode($data->getStrByLang('description')).'</p>';
}
if($data->getStrByLang('description')){
echo '<p><strong>'.tt('Description').':</strong> '.CHtml::decode($data->getStrByLang('description')).'</p>';
}