$out->elementStart('p', array('class' => implode(' ', $cls)));
$out->elementStart('span', 'answer-content');
- $out->raw(QnAPlugin::shorten($answer->content, $notice));
+ $out->raw(common_render_text($answer->content));
$out->elementEnd('span');
if (!empty($answer->revisions)) {
if (!empty($question->description)) {
$out->elementStart('span', 'question-description');
- $out->raw(QnAPlugin::shorten($question->description, $notice));
+ $out->raw(common_render_text($question->description));
$out->elementEnd('span');
}