Files
jekyll/docs/_includes/docs_variables_table.html
Ashwin Maroli 68066ce268 Optimize rendering of the documentation site (#8020)
Merge pull request 8020
2020-02-24 18:44:11 -05:00

19 lines
336 B
HTML

<div class="mobile-side-scroller">
<table>
<thead>
<tr>
<th>Variable</th>
<th>Description</th>
</tr>
</thead>
<tbody>
{% for var in include.scope -%}
<tr>
<td><p><code>{{ var.name }}</code></p></td>
<td><p>{{- var.description -}}</p></td>
</tr>
{% endfor -%}
</tbody>
</table>
</div>