refactor(docs-infra): remove linenums=false since it is now the default (#31674)

PR Close #31674
This commit is contained in:
George Kalpakas
2019-07-20 20:40:17 +03:00
committed by Miško Hevery
parent dd0be7feb7
commit 1bcd58cee8
82 changed files with 1257 additions and 2097 deletions

View File

@ -2,7 +2,7 @@
{% import "lib/descendants.html" as descendants -%}
<section class="{$ doc.docType $}-overview">
<code-example language="ts" hideCopy="true" linenums="false">
<code-example language="ts" hideCopy="true">
{% if doc.isAbstract %}abstract {% endif%}class {$ doc.name $}{$ doc.typeParams | escape $}{$ memberHelper.renderHeritage(doc) $} {{$ memberHelper.renderMembers(doc) $}
}
</code-example>

View File

@ -3,7 +3,7 @@
{% for ngModule in doc.ngModules %}
<li>
<a href="{$ ngModule.path $}">
<code-example language="ts" hideCopy="true" linenums="false" class="no-box">{$ ngModule.name | escape $}</code-example>
<code-example language="ts" hideCopy="true" class="no-box">{$ ngModule.name | escape $}</code-example>
</a>
</li>
{% endfor %}