|
|
|
|
|
by martian
4797 days ago
|
|
Yes, in your Angular app's config you can use the $interpolateProvider to adjust this. For example, to use [[ ]], just do this: var myApp = angular.module('myApp', [], function($interpolateProvider) {
$interpolateProvider.startSymbol("[[");
$interpolateProvider.endSymbol("]]");
});
|
|