grunt-html2js
Version:
Compiles AngularJS templates to JavaScript
7 lines (5 loc) • 342 B
JavaScript
angular.module("templates-htmlmin", ["../test/fixtures/five.tpl.html"]);
angular.module("../test/fixtures/five.tpl.html", []).run(["$templateCache", function($templateCache) {
$templateCache.put("../test/fixtures/five.tpl.html",
"<div class=\"quotes should be escaped\"><span><span><span>Lorem ipsum</span></span></span></div>");
}]);