This guide outlines the steps required to create documentation effectively.
Follow these steps to create a new page:
- Create a new
.mdfile and write the content using Markdown. You can utilize the custom tags provided by the MarkDown Converter. For examples of various tags, refer toassets/content/introduction.mdand view them in action on the initial page of the documentation template. - Add the
#endtag at the end of each page. - Save the file in the
assets/content/directory.
Pages and categories are configured in the assets/content-structure.json file. Each child entry represents either a page or a category, and they follow a similar structure.
- type:
page - name: The visible name of the page.
- path: The file path, e.g.,
content/<file-name>.md.
Example Page:
- type:
category - name: The visible name of the category.
- children: A list of child pages or categories.
Example Category:
A topic category contains subpages for deeper nesting.
- type:
category - name: The visible name of the topic category.
- collapsed:
trueif initially collapsed,falseif expanded. - children: A list of child pages or categories.
Example Topic Category:


