vsoch/docsy-jekyll

Multiple levels of children in _toc.yml?

leecalcote opened this issue · 3 comments

Hi,

Does _toc.yml support nested children:? e.g.

- title: Documentation
  url: '#'
  links:
    - title: Overview
      url: '#'
    - title: Installation
      url: installation
      children:
        - title: Type
          url: installation/type
          children:
          - title: Water
            url: installation/type/water
          - title: Sand
            url: installation/type/sand
          - title: Fire
            url: installation/type/fire
        - title: Organization
          url: installation/organization
    - title: Architecture
      url: architecture
vsoch commented

It's mirroring docsy so I think that just means an overall title, and then links (with children) but not the children having links too. But I wonder if you need that much nesting, since when you click on a (first level of child in the example above) the markdown sections are rendered as navigation on the right?

vsoch commented

I hope I answered your question! Closing issue, as there is no action to be taken.