Merge remote-tracking branch 'origin/main' into main

This commit is contained in:
Marco Oesting
2023-10-11 10:31:09 +02:00
2 changed files with 39 additions and 5 deletions

View File

@@ -10,19 +10,32 @@
```
docs/
├── src/
├── src/mydocs.jl
├── src/index.md
└── make.jl
```
### add some docs
2. with mydocs containing
````@docs
func(x)
````
(but with three `)
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