Documentation Blueprints¶
Don't forget, today's documentation is tomorrow's time saver!
![]()
![]()
Documentation is hosted here: (you are here but anyways).
Style Guide is found here.
How to Edit the Docs¶
These docs are hosted on GitLab Pages, meaning every page is just a simple .md
file stored in the 'docs' repository.
At the top-right of most pages, you'll see a few icons. If you hover over them you should get the idea of what they do, incase you don't let's look at them together:
About the page icons
Add New Page Here β Click on it to create a subpage under the current page
Edit in Web IDE β (Best for quick documentation updates) Click on it β Make your edits β Go to Source Control
β Write a commit message β Push & commit! (ATTENTION: Changes appear after a few minutesβbe patient while the pipeline runs)
Edit This Page β Takes you directly to the .md
file in the GitLab repo
Each page automatically generates "Table of Contents (TOC)" based on the headings, see it on the right side of a page.
New Page?¶
When adding a new file/page, it must start with a title
, but the first header will be the page title.
F.x this page has this setup in the first lines:
And you see how that's rendered :)
Naming Conventions!¶
Use consistent conventions, uppercase the firts letter, than lowercase with underscores separating words, for example Deploy_Website
(folder) and Deploy_Website.md
(Markdown file).
Want Images?¶
If images are used, create a folder named image
in the current folder. In there you should put all images to refer to in the documenation.
Refer to it like so:
See more details under style guide, section 'images' (look at the TOC on the right).