I want to display my editor value from MySQL database. when I am displaying data with angularJS then it is showing text with html tag.
HTML Code:-
<pre>
{{x.description}}
</pre>
Here I am getting output:-
<p>Hello India</p><br/>
<p>List Of State</p><br/>
<ol><br/>
<li>Karnataka</li><br/>
<li>Bihar</li><br/>
<li>Delhi</li><br/>
</ol>
But I want to result Like this:-
Hello India
List of State
1. Karnataka
2. Bihar
3. Delhi