Skip to content
Snippets Groups Projects
title: Node Operation
section: Node Operation
exclude: true
exclude_in_index: true
canonical_url: .

{% assign nav = site.data.nav.toc | where: "collection", "nodeop" | first %} {% assign col = site.collections | where:"id", nav.collection | first %} {% assign sorted_docs = col.docs | sort: "position" %}

{% if sorted_docs %}
    {% for doc in sorted_docs %} {% unless doc.exclude_in_index %}
  • {{ doc.title }} {{ doc.description | markdownify }}
  • {% endunless %} {% endfor %}
{% endif %}