Jekyll and AngularJS

code • May 29, 2014

I’m a total AngularJS rube, so it took me a few tries to get Angular to work on a Jekyll site. Since both use {{ curly brackets }}, Jekyll will gobble up the brackets first. (And none for AngularJS.)

After some digging, I found this Fiddle and I learned about Angular’s interpolate provider.

Interpolate provider will allow you to swap curly brackets for different characters.

See the Pen Angular Interpolate Provider Example by Katy DeCorah (@katydecorah) on CodePen.

Keep reading code