Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a way to disable Angular's double curly brace notation for selected DOM elements?

On our website we display user-generated content (blog posts etc.). It's rendered by a Symfony app. The frontend is currently being rewritten in the form of an Angular app. Now we noticed that when a user's blog post contains double curly brace notation, Angular will process it, which is undesired.

Is there a way in Angular to disable the double curly brace parsing for certain DOM elements?

like image 749
Carlo Zottmann Avatar asked Dec 08 '22 09:12

Carlo Zottmann


1 Answers

Yes, use the ng-non-bindable directive. in the element that wraps your dynamic user editable content.

<div ng-non-bindable>{{some text}}</div>
like image 134
James Avatar answered Jan 19 '23 00:01

James