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
This commit is contained in:
Peter Bacon Darwin 2015-11-15 21:36:20 +00:00
parent dbb065a7ed
commit 217c690781
1 changed files with 1 additions and 8 deletions

View File

@ -1,8 +1 @@
{% include "lib/githubLinks.html" -%}
{% extends 'layout/base.template.html' %}
{% block body %}
<h1>{$ doc.name $} <span class="type">type alias</span></h1>
<p>{$ doc.description | marked $}</p>
{% endblock %}
{% extends 'interface.template.html' %}