Want to know if there's some best practices around the use of both together.
There's a conflict with the use of {{ }} for example.
People talk about interpolate:
angular.module('app', []).config(function($interpolateProvider){
$interpolateProvider.startSymbol('{[{').endSymbol('}]}');
});
Is it the best way? Are there more tips on other use cases?
Thanks you guys!