8
solution found..
edit file modules/news/blocks/news_top.php
search string "teaser"
replase the TWO line:
$news['teaser'] = xoops_substr(strip_tags($story->hometext()), 0, $options[3]+3);
to
$news['teaser'] = xoops_substr($story->hometext(), 0, $options[3]+3);
or
$news['teaser'] = $story->hometext();
all works fine!!