tomjoht / documentation-theme-jekyll

A Jekyll-based theme designed for documentation and help systems. See the link for detailed instructions on setting up and configuring everything.

Home Page:http://idratherbewriting.com/documentation-theme-jekyll/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

TOC on Generated PDF

davidPilkington opened this issue · comments

I was just wondering if it is possible to have the TOC output more than just the two levels of headers from the sidebar? Apologies up front for not explaining this we.

Currently, I can output two heading levels deep in the TOC

Section heading

Page
Page
Page

What I would like to be able to do is have additional headers added to the Prince generated TOC

Section heading

Page Heading
Page Heading

Page Subheading
Page Subheading

Update: I took a look through the samplelist.yml document and there appears to be a way to do this using subfolderitems. I will investigate and come back.

Thanks

Hi all,

I was able to get it to work. As an aside, this feature is not well documented.

I was able to figure it out by looking at the samplelist.yml file. However there is a typo, subfolder should read subfolders if you want them to appear in the menu.

Other than this, love this feature!!!

for those that want to add sub items to the sidebar (and toc). here is an example built on the samplelst.yml file

entries:
- title: Sidebar
  product: Product 1
  version: v1.0
  folders:
  - title: Introduction
    output: web
    folderitems:
    - title: Bananas
      output: web, pdf
      type: frontmatter
      url: bananas.html
      subfolders:

      - title: Apples
        output: web
        subfolderitems:
        - title:  Fuji apples
          output: web
          type: frontmatter
          url: fuji_apples.html
      
        - title: Gala apples
          output: web
          type: frontmatter
          url: gala_apples.html

Thanks for the note. I'll correct the issue with subfolders. In the future I will improve the docs as well. Thanks!