我正在尝试突出显示<pre><code>
块内的代码。
扭曲是代码注入Angular的ng-bind-html
:
<div ng-controller="postsController">
<div ng-repeat="post in posts">
<div ng-bind-html="post"></div>
</div>
</div>
post
变量包含HTML,其中有一个<pre><code>
块。我可以让一切都在Angular之外工作,甚至尝试angular-highlightjs,但没有任何运气。这里有类似的问题,但它们与我的情况不太一样。
有人可以帮忙吗?谢谢!
AP