Created
April 13, 2015 17:39
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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