chore(doc-gen): HTML escape method signatures

Closes #1249
Closes #1257
This commit is contained in:
Peter Bacon Darwin 2015-04-08 17:10:44 +02:00
parent 41262f4265
commit ee8bf0b3c0
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
{% macro paramList(params) -%}
{%- if params -%}<span class="params">(
{%- for param in params -%}
<span class="param">{$ param $}{% if not loop.last %}, {% endif %}</span>
<span class="param">{$ param | escape $}{% if not loop.last %}, {% endif %}</span>
{%- endfor %})</span>
{%- endif %}
{%- endmacro -%}