https://github.com/geo-c/oct-coredocs
The OCT-Core-Documentation written in Markdown, built with MkDocs
https://github.com/geo-c/oct-coredocs
documentation-generator mkdocs
Last synced: 15 days ago
JSON representation
The OCT-Core-Documentation written in Markdown, built with MkDocs
- Host: GitHub
- URL: https://github.com/geo-c/oct-coredocs
- Owner: geo-c
- License: mit
- Created: 2016-06-11T22:22:52.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2018-12-24T16:06:27.000Z (over 7 years ago)
- Last Synced: 2025-02-25T19:43:31.410Z (over 1 year ago)
- Topics: documentation-generator, mkdocs
- Language: Dockerfile
- Homepage: http://giv-oct.uni-muenster.de:8080/docs/
- Size: 3.25 MB
- Stars: 0
- Watchers: 9
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# OCT-Core-Docs
The OCT-Core-Documentation written in Markdown, built with MkDocs
***
### Build-process
* You need Python (2.7.2) and the Python Package Index (1.5.2) to build the documentation. Check if your operating-system provides it already:
```
python --version
pip --version
```
* This documentation uses [MkDocs](http://www.mkdocs.org/), so that the documentation can be written in Markdown. **Cheat cheets** for Markdown can be found here:
* [https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet](https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet)
* [https://daringfireball.net/projects/markdown/](https://daringfireball.net/projects/markdown/)
* Install MkDocs with the following command:
```
pip install mkdocs
```
* Clone this repository to a local-repository and build the documentation with the following command:
```
mkdocs build
```
**Attention**: If some problems occur during the build-process, you can also try to re-build the documentation with the following command:
```
mkdocs build --clean
```
* If you want to add new pages to this documenation, create a new `.md`-Files in folder: `docs/`
**Hint**: If you want to add sections, create a new folder, like this: `docs/NewSection` and create your new `.md`-files in this folder
* Before building, don't forget to add your new page(s) and sections in the `mkdocs.yml`-file. Please find an example at the end of this page: `NewSection` and `newSinglePage.md`
```
- Home: index.md
- Installations:
- Nodejs: installations/nodejs.md
- Bower: installations/bower.md
- About:
- Repositories: about/repositories.md
- Contributers: about/contributers.md
- NewSection:
- newPage: newSection/newPage.md
- newSinglePage.md: newSinglePage.md
```
* Build the documentation with the command above (see: 4.). All `.md`-files will be generated into `.html`-files in the folder `site/`.
**Hint**: For automatically building, you can use the following command, to start the built-in-MkDocs-Server:
```
mkdocs serve
```
Open a new browser-tab and go to [http://127.0.0.1:8000/](http://127.0.0.1:8000/).
For more information about MkDocs, please have a look into their documentation [http://www.mkdocs.org/](http://www.mkdocs.org/)