I wrote a large scientific package SoilWater-ToolBox https://github.com/joseph-pollacco/SoilWaterToolbox and now it is time to write the user’s manual which we plan to publish in GitHub. I am looking for advice on the recommended tools to write a complex manual which will describe the model :
1. Is GitHub wiki the recommended website to write a manual?
2. Is there a recommended template?
3. How can we write Latex equations?
4. What would be the recommended Markdown editor OpenSource or paid?
The advantage of Documenter is that you can “reuse” the docstrings of your functions/types for yhe API part, and use true julia scripts, that you can keep under testing, with Literate.jl for the “tutorials”/'exemple" part of the documentation.
In practice, Literate.jl converts julia scripts (.jl) with markdown embedded as comment to markdown files (.md) with code embedded as example block, and then Documenter transfrorms everything to html and integrates with GitHub Continuous integration to piblish on github pages.
Thanks Antonello Labianco. I could now see the advantages of using Documenter.jl as it can use partly the docstrings of the functions and therefore enables not to duplicate the efforts and to reinforce good programming practice to document the functions.
Which indeed these software are very powerful software. I am wandering if there are some Tutorials or Videos or simple exampletemplates which can help beginners to get started quickly?
What is the best Markdown software which is best to use for a beginner and has Latex?
For example in Extensions in Vscode there are a multitude of options, but I do not think that there are any ones which has dedicated pulldown menus or options which will help beginners get started.
@sylvaticus thanks I totally agree that I will need to make the SoiulWater-ToolBox into a package, I would write a dedicated topic to answer some of my questions.
I integrate the two in the way I described in my own BetaML package, you can have a look on the docs folder and the .github/workflows one, where scripts for GitHub CI are defined.