Adding Documentation
https://docs.hacman.org.uk is the home for documentation relating to Manchester Hackspace
It is hosted on GitHub Pages through mkdocs-material. The wiki is written in markdown, a type of text file, the same that the forum uses.
Adding Documentation
Create a markdown text file (try stackedit.io if you want a simple editor) and email the output to board@hacman.org.uk and we will add it to the repo on your behalf
Create a pull request with a new markdown file in the documentation repository and we will pull it at the next update
Adding videos, GIFs and animations
Videos and animated images are supported. Reduce the size of videos before adding them to the documentation.
Where possible convert short videos into looping animated images. '.gif' is an old standard and has been replaced by '.webp', which works exactly the same.


Use this browser tool to convert short videos to .webp files. https://imagy.app/mp4-to-webp/
Videos can be inserted with the following html string. Global css styling is applied for the video-container class. This can be seen in the extra.css file.
Replace https://www.youtube.com with the link to the video.
Adding External Links
If an external link may change in future and is going to be refered to on multiple pages of documentation, it can be defined once and referenced everywhere else to make updating dead links easy.
Define the link in the mkdocs.yml file under the links section.
To then use it on your page use double curly braces, with a space, then links.<your_link_name> followed by a space and double curly braces.
Helpful links
Markdown Guides: - https://www.markdownguide.org/getting-started/ - https://www.markdownguide.org/cheat-sheet/