Skip to content

Instantly share code, notes, and snippets.

@hallahan
Created April 13, 2015 17:39
Show Gist options
  • Save hallahan/abe6a8fe0bbe772c4d09 to your computer and use it in GitHub Desktop.
Save hallahan/abe6a8fe0bbe772c4d09 to your computer and use it in GitHub Desktop.
Changing the brackets used in Angular so we don't have a collision with Jekyll Liquid Templates
var app = angular.module('app', [], function($interpolateProvider) {
$interpolateProvider.startSymbol('//');
$interpolateProvider.endSymbol('//');
});
function ctrl($scope) {
$scope.example = 'Using // instead of {{';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment