Спасибо за костыли. Финально это выглядит так

Код:
private function createAdvicesStyle():void {
adviceStyle.setStyle("a:link", { textDecoration: "none", color: "#D0EB55" });
adviceStyle.setStyle("a:hover", { textDecoration: "underline" });
adviceStyle.setStyle("a:active", { textDecoration: "underline" });
}
<mx:Repeater id="advicesRPTR" dataProvider="{_advices}">
<mx:Canvas label="{'- ' + advicesRPTR.currentItem.title}" width="100%" height="100%"
backgroundColor="#6F7777" fontWeight="normal">
<mx:Text width="100%" height="100%" selectable="true"
creationComplete="{event.target.styleSheet = adviceStyle}">
<mx:htmlText>
{' ' + advicesRPTR.currentItem.body}
</mx:htmlText>
</mx:Text>
</mx:Canvas>
</mx:Repeater>
Как это написать чистым MXML у меня идей нету.