Merge remote-tracking branch 'origin/main' into main
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user