fixes #30 additional documentation changes
439 files changed
tree: c3d6f5b6c9e21d4b04315fac466c2a634e634fee
  1. _layouts/
  2. _posts/
  3. css/
  4. img/
  5. js/
  6. publications/
  7. releases/
  8. .gitignore
  9. _config.yml
  10. about.md
  11. blogs.md
  12. build_doc.sh
  13. CNAME
  14. coding-style.md
  15. download.md
  16. faq.md
  17. features.md
  18. how-to-contribute.md
  19. how-to-release.md
  20. index.html
  21. overview.md
  22. performance-report.md
  23. publications.md
  24. README.md
  25. roadmap.md
  26. usecases.md
README.md

This README gives an overview of how to build and contribute to the documentation of Gearpump.

The documentation is included with the source of Gearpump in order to ensure that you always have docs corresponding to your checked out version.

Requirements

We use Markdown to write and Jekyll to translate the documentation to static HTML. To install Jekyll, you need to install the software as follows:

For redhat linux systems: sudo yum install ruby ruby-devel nodejs python-pip

`sudo gem install jekyll`
`sudo gem install kramdown`
`sudo gem install html-proofer`
`sudo pip Pygments`

Kramdown is needed for Markdown processing and the Python based Pygments is used for syntax highlighting.

Build

Command jekyll build can be used to make the build.

Command jekyll serve --watch can be used to for development. Jekyll will start a web server at localhost:4000 and watch the docs directory for updates. Use this mode to preview changes locally.

Contribute

The documentation pages are written in Markdown. It is possible to use the GitHub flavored syntax and intermix plain html.

In addition to Markdown, every page contains a Jekyll front matter, which specifies the title of the page and the layout to use. The title is used as the top-level heading for the page.

---
title: "Title of the Page"
---

Furthermore, you can access variables found in docs/_config.yml as follows:

{{ site.NAME }}

This will be replaced with the value of the variable called NAME when generating the docs.

All documents are structed with headings. From these heading, a page outline is automatically generated for each page.

# Level-1 Heading  <- Used for the title of the page
## Level-2 Heading <- Start with this one
### Level-3 heading
#### Level-4 heading
##### Level-5 heading

Please stick to the “logical order” when using the headlines, e.g. start with level-2 headings and use level-3 headings for subsections, etc. Don‘t use a different ordering, because you don’t like how a headline looks.