AngularUI Bootstrap:在轮播文本中解析 HTML

AngularUI Bootstrap: Parse HTML in carousel text

我正在尝试实施 Angular UI Bootstrap Carousel 并在文本中包含 HTML。以为我可以使用类似

的东西
text: $sce.trustAsHtml('Nice image <br />test')

但显然这不起作用,我不知道为什么。

Plunkr:https://plnkr.co/edit/9PvaS8SoRmN1o52wiAf8?p=preview (fork of the offical example from the docs).

使用 ng-bind-html 指令在视图上显示 html 内容

<p ng-bind-html="slide.text"></p>

Demo Plunkr