I have two questions regarding @autodocs in Documenter.
How can I evaluate the examples in the docstrings when I use @autodocs?
The order of functions that appear when I use @index and @autodocs is based on alphabet, while I want it to be in the order that the functions appear in the code. Is this a known issue?
For instance for my MatLang package: Functions List · MatLang
You can not. The at-blocks generally on work on the Markdown pages. My view is that docstrings need to stay readable in the REPL, so you shouldn’t have generated content there (unless you have some DocStringExtensions-like solution).
I am not sure if “order in which they appear in the code” is completely well-defined. But if I remember correctly, the docstrings do get stored in order in which they are parsed, so the information is there. Feel free to open an issue to discuss this further – we could potentially have some sort of a Sort option for at-autodocs. The sorting of the autodocs docstrings appears to be happening here.
On the other hand, I have a feeling that if you do really care about the order in which the docstrings appear, you should probably be curating that manually with at-docs blocks.