</thead>
<tbody>
{% for script in site.data.scripts %}
+ {% unless script.HIDDEN == "1" %}
<tr id="script-{{ script.filename | replace: ".", "_" }}">
<td class="filename">
<a href="scripts/{{ script.filename }}">{{ script.filename }}</a>
</td>
<td class="votes"></td>
</tr>
+ {% endunless %}
{% endfor %}
</tbody>
</table>
---
{% assign required_attributes = "filename version authors contact name description license" | split: ' ' %}
-{% assign optional_attributes = "url commands note modules" | split: ' ' %}
+{% assign optional_attributes = "url commands note modules HIDDEN" | split: ' ' %}
$scripts = {
{% for script in site.data.scripts %}