diff options
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | mkdocs.yml | 3 |
2 files changed, 5 insertions, 0 deletions
@@ -21,6 +21,8 @@ docs/%: source ln -sf $(shell realpath --relative-to=$@ source/$(subst /,-,$*)/ADMIN.md) docs/$*/admin.md) $(if $(wildcard source/$(subst /,-,$*)/SETUP.md),\ ln -sf $(shell realpath --relative-to=$@ source/$(subst /,-,$*)/SETUP.md) docs/$*/setup.md) + $(if $(wildcard source/$(subst /,-,$*)/DEVELOP.md),\ + ln -sf $(shell realpath --relative-to=$@ source/$(subst /,-,$*)/DEVELOP.md) docs/$*/devel.md) init: mr update @@ -18,6 +18,9 @@ nav: - Account: 'account/admin.md' - 'Account shell': 'account/shell/admin.md' # - Chat: 'chat/admin.md' +- Development: +# - Introduction: 'devel.md' + - System: 'system/devel.md' - About: - Structure: 'about/index.md' - 'Technical setup': 'about/setup.md' |