angular-cn/tools/doc-shredder/xref-jade.html.template

20 lines
571 B
Plaintext
Raw Normal View History

2015-08-11 03:27:09 -04:00
<h1> Jade path to fragment path cross reference report
<ol>
{% for jadePath, fragInfos in doc.jadeToFragMap %}
<li>
Jade file: <strong>{{ jadePath }}</strong>
<p>Fragment files</p>
<ul>
{%- for fragInfo in fragInfos %}
{%- if fragInfo.exists -%}
<li>{{ fragInfo.fragPath }}</li>
{%- else -%}
<li> *** NOT FOUND*** : {{ fragInfo.fragPath }}</li>
{%- endif -%}
{%- endfor %}
</ul>
<br>
</li>
{%- endfor %}
</ol>