This is a WIP PR concerning a proposal about the generation of the user manual.
A pom.xml was added into the `docs` folder including : - the css for the html generation of the documentation (`user-manual/en/apache.css`) - the theme for the pdf generation of the documentation (`theme`) The theme for the html and the pdf is based on the [ASF](https://apache.org) website. The generation use the `asciidoctor-maven-plugin` for html and pdf. To generate the html documentation, use the **html** maven profile : ``` $ cd docs $ mvn -Phtml ``` The website is generated under `target/generated-html` and the main page is `index.html` To generate the pdf documentation, use the **pdf** maven profile : ``` $ cd docs $ mvn -Ppdf ``` The pdf is generated under the repository `target/generated-pdf` and the main document is `index.pdf` [ Full content available at: https://github.com/apache/camel/pull/2535 ] This message was relayed via gitbox.apache.org for [email protected]
