All of the pages need to be placed under content/pages/
All of the pages should use the following Markdown format:
Title: <NAME OF YOUR PAGE example: Python snippet for finding ...>
Date: <DATE example: 01-01-20 16:40>
Template: <PAGE template type : wiki_branch_page OR wiki_leaf_page >
THE CONTENT OF THE PAGE...
wiki_branch_page - a page that contains a list of links to the child pages (example: techartorg.github.io/contribute )
wiki_leaf_page - a page that contains information (example: this page)
Select one of the existing categories to place your page under.
Categories:
(optional)
If you need to create a subcategory
under the category
you have selected, create a new Markdown file and a folder with the same name.
Here is an example of creating a python-tips
subcategory under the python
category folder
└── content/pages/
├── python.md # python category Markdown file
└── python/ # python category folder
├── python-tips.md # {NEW} python-tips subcategory Markdown file
└── python-tips/ # {NEW} python-tips subcategory folder
The Markdown file:
Template
metadata set to wiki_branch_page
Title: <NAME OF YOUR PAGE example: Python snippet for finding ...>
Date: <DATE example: 01-01-20 16:40>
Template: wiki_branch_page
Under the subcategory
folder create your new Markdown file.
Example:
└── content/pages/
├── python.md # python category Markdown file
└── python/ # python category folder
├── python-tips.md # python-tips subcategory Markdown file
└── python-tips/ # python-tips subcategory folder
└── my-python-tip.md # {NEW} python tip Markdown file
Here we create a my-python-tip.md
file under content/pages/python/python-tips/
.
The Markdown file:
Template
metadata set to to wiki_leaf_page
Title: <NAME OF YOUR PAGE example: Python snippet for finding ...>
Date: <DATE example: 01-01-20 16:40>
Template: wiki_leaf_page
make devserver
start peldev.bat && start pelserv.bat