An example is available in src/template.jl
Pluto notebooks are stored in the examples folder.
- They should be converted into a html
using Pkg
Pkg.activate("docs")
using
PlutoSliderServer.export_directory("examples/")and the content of the example folder should be copied to docs/src/public.
- Each html should be included in a markdown page (see
docs/1-2-installation.md)
```@raw html
<div style="height: 100vh; width: 100%; overflow: auto; border: 1px solid #ddd; border-radius: 8px;">
<iframe src="./pluto-1-2-installation.html" style="width: 100%; height: 100%; border: 0;"></iframe>
</div>
```
- the .md files should be added in the
make.jl
using LiveServer
servedocs(; buildfoldername="build/1")