$interpolateProvider can be used for configuring the interpolation markup. Defaults to {{ and }} in AngularJS.
app.config(function($interpolateProvider) {
$interpolateProvider.startSymbol('[[');
$interpolateProvider.endSymbol(']]');
});
This helps in working with Template engines like 'Swig' which uses the '{{' '}}' the double curly braces to display variables in your templates.