From ab10f715d460c70e15138705329aee27fdbdd0b3 Mon Sep 17 00:00:00 2001 From: Jan Grewe Date: Mon, 27 Jul 2020 09:49:24 +0200 Subject: [PATCH] add mkdocs config --- .gitignore | 4 +++- fishbook/.mkdocs.yml | 20 ++++++++++++++++++++ 2 files changed, 23 insertions(+), 1 deletion(-) create mode 100644 fishbook/.mkdocs.yml diff --git a/.gitignore b/.gitignore index 288fb2d..696b0fc 100644 --- a/.gitignore +++ b/.gitignore @@ -3,4 +3,6 @@ __pychace__/ #*# *~ *.pyc -.idea \ No newline at end of file +.idea +_build/ +docu/ \ No newline at end of file diff --git a/fishbook/.mkdocs.yml b/fishbook/.mkdocs.yml new file mode 100644 index 0000000..523bec8 --- /dev/null +++ b/fishbook/.mkdocs.yml @@ -0,0 +1,20 @@ +site_name: fishbook + +repo_url: https://whale.am28.uni-tuebingen.de/git/jgrewe/fishbook + +edit_uri: "" + +site_author: Jan Grewe + +theme: readthedocs + +markdown_extensions: + - markdown_include.include + +nav: + - Home: 'index.md' + - 'User Guide': + - 'configuration': 'configuration.md' + - 'getting started': 'getting_started.md' + - 'todos': 'todos.md' + - API reference: 'api/index.html' \ No newline at end of file