You can generate docs for comsumption by the angular.io website by running: ```bash gulp docs/angular.io ``` The generated docs can be found in `dist/angular.io`
7 lines
196 B
HTML
7 lines
196 B
HTML
{% macro paramList(params) -%}
|
|
{%- if params -%}
|
|
({%- for param in params -%}
|
|
{$ param | escape $}{% if not loop.last %}, {% endif %}
|
|
{%- endfor %})
|
|
{%- endif %}
|
|
{%- endmacro -%} |