I have a simple HTML document, like...
<ol>
<li><strong>Test 1</strong></li>
<li><strong>Test 2</strong></li>
</ol>
...and I want to bind it to a div with ng-bind-html, but the HTML tag <ol> (or <li>) is not rendered.
The result I have is:
<strong>Test 1</strong>
<strong>Test 2</strong>
Any ideas?