From 217c690781a4e0706d0a46503446f60d1d1ac9c2 Mon Sep 17 00:00:00 2001 From: Peter Bacon Darwin Date: Sun, 15 Nov 2015 21:36:20 +0000 Subject: [PATCH] api-builder: fix type-alias template so it doesn't break jade The previous template was HTML rather than Jade and code blocks in the content caused the Jade processing to crash. See https://github.com/angular/angular/issues/4480 --- .../templates/type-alias.template.html | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/tools/api-builder/angular.io-package/templates/type-alias.template.html b/tools/api-builder/angular.io-package/templates/type-alias.template.html index 6149a65df8..8f4b225223 100644 --- a/tools/api-builder/angular.io-package/templates/type-alias.template.html +++ b/tools/api-builder/angular.io-package/templates/type-alias.template.html @@ -1,8 +1 @@ -{% include "lib/githubLinks.html" -%} -{% extends 'layout/base.template.html' %} - -{% block body %} -

{$ doc.name $} type alias

-

{$ doc.description | marked $}

- -{% endblock %} \ No newline at end of file +{% extends 'interface.template.html' %}