Skip to content

tillitis/dev-tillitis

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

deploy hugo site

This is automatically deployed to https://dev.tillitis.se

Developer Handbook

Source of Tillitis TKey Developer Handbook.

Hugo

See under hugo for our static site source. You need to install Hugo before using it to generate a Hugo website.

To see the Developer Handbook:

% cd hugo
% hugo server
...
Web Server is available at http://localhost:1313/ 
...

Point your browser at http://localhost:1313/ to see our documentation.

Editing pages

All real content is under hugo/content and are Markdown files compatible with CommonMark. Mermaid diagrams are supported, too.

First page

The first page is in hugo/content/_index.md.

To create a new chapter

Create a directory, for instance tools.

Create an _index.md containing something like:

---
title: Tools & libraries
weight: 2
---

# Tools & libraries

Text about tools and libraries.

Write content in a chapter

If you're not going to edit an existing file, create a new one with your favourite editor.

In the front matter (the stuff inside --- in the beginning of the file) you can specify the internal order with weight: 2 to get it in second place in the table of contents.

License

Unless otherwise noted, the content of the Developer Handbook is licensed under CC-BY-SA-4.0 with Copyright to Tillitis AB.

See LICENSE for the full license texts.