About this document
The source of this document is written in the asciidoc format. The source is split into one file per top-level section, located in the docs/user_guide/ folder. The entry point is user_guide/index.adoc.
How to generate HTML from AsciiDoc
The html is generated with asciidoctor. Code snippets, images and other resources are included in the process. Also the version numbers are automatically inserted to avoid "human errors".
The final HTML document is published in this repo: https://github.com/esmini/esmini.github.io
Access URL: https://esmini.github.io/
Install tools:
| Linux |
|
| Windows |
|
Generate HTML document
From the docs/user_guide/ folder, render each page individually (bash):
for f in *.adoc; do asciidoctor -r asciidoctor-kroki "$f"; done
./generate-search-index.sh
This produces a collection of .html files (index.html being the landing page) and the search_index.json file that is used for the search functionality in the published document.
How to view previous versions
Full commit history is found here
To view a previous version, there are two ways:
-
AsciiDoc preview
checkout corresponding tag, e.g:git checkout v2.42.0and then preview the adoc files (in docs/user_guide) in VSCode utilizing the AsciiDoc extension. -
utilizing htmlpreview.github.io
either refer to a tag, like this:
https://htmlpreview.github.io/?https://raw.githubusercontent.com/esmini/esmini.github.io/refs/tags/v2.42.0/index.html
or refer to any commit, like this:
https://htmlpreview.github.io/?https://raw.githubusercontent.com/esmini/esmini.github.io/47a9267a5935d0bd2648950e4d9d3e23f1e8ff3a/index.html
Note: This method may be blocked in web browser (generically avoiding proxy phishing threats)