improved tipps

This commit is contained in:
behinger (s-ccs 001) 2023-10-11 08:19:37 +00:00
parent ae6d91c02d
commit db2e8d742d

View File

@ -18,15 +18,23 @@ docs/
2. with mydocs containing
````
Show docstring of a single function `func`
```@docs
func
```
Provide documentation for all doc_string-equiped functions
```@autodocs
Modules = [MyDocsPackage]
```
Execute a code-block, but hide it's output
```@example MyScope
x = [1,2,3]
nothing #hide
```
````
and