[AngularJS] ng-bind-html
Angular 에서 view 에 데이터를 binding 할 때 mustache 를 사용해서 binding 하는 경우 ex) {{tc.str}} 그리고 데이터에 html 코드가 있는 경우 ex) public var str = "hello world! :)" mustache 를 사용하면 string 으로 받아들여서 출력시 pre 태그 안에 출력시킨것 처럼 html 코드가 그대로 출력되지만ex) 결과물 : hello world! :) 다음과 같이 ng-bind-html 을 쓰면 html 태그가 적용된채로 화면에 출력 시킬수 있다.