added projectworks, ohmyrepl, first docs

This commit is contained in:
behinger (s-ccs 001)
2023-09-21 08:51:15 +00:00
parent d62530d127
commit 83c72c8b9f
4 changed files with 189 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
# Documenter.jl
### File-structure overview
```
Example/
├── Project.toml
├── README.md
├── LICENSE.md
├── src
│ ├── Example.jl
│ └── utilities.jl
└── docs
├── Project.toml
├── src
│ ├── assets
│ │ ├── favicon.ico
│ │ └── logo.svg
│ ├── index.md
│ └── showcase.md
└── make.jl
```
### The `make.jl` file
```julia
using Documenter, Example
makedocs(
sitename = "Example.jl",
modules = [Example],
pages = Any[
"Home" => "index.md",
"Showcase" => "showcase.md",
],
)
```
### How to generate
`julia --project=docs/ docs/make.jl` or `]activate docs/; include("make.jl")` or use `LiveServer.jl`