Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/inkydragon/themissingdoc4julia.jl
Exploring how to organize docs better
https://github.com/inkydragon/themissingdoc4julia.jl
Last synced: about 1 month ago
JSON representation
Exploring how to organize docs better
- Host: GitHub
- URL: https://github.com/inkydragon/themissingdoc4julia.jl
- Owner: inkydragon
- License: mit
- Created: 2022-10-02T15:55:58.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-10-17T08:13:10.000Z (3 months ago)
- Last Synced: 2024-10-19T10:59:47.541Z (3 months ago)
- Language: Julia
- Homepage: https://inkydragon.github.io/TheMissingDoc4Julia.jl
- Size: 995 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# The Missing Doc 4 Julia
This project is intended to be a supplement to [the official julia documentation](https://docs.julialang.org/).
When possible, much of the project will be merged into the julia documentation.This project is a *reference*.
> Reference guides are **technical descriptions** of the machinery and how to operate it.
> Reference material is **information-oriented**.
>
> —— 🔗[Reference - diataxis.fr](https://diataxis.fr/reference/)## Example
Example doc page:
[TheMissingDoc4Julia.github.io/sin](https://inkydragon.github.io/TheMissingDoc4Julia.jl/dev/Base.Math/Trigonometry/Sine/sin/)See also: [Related Issues](docs/src/index.md)
## Build
1. Clone project.
2. Init and Build:
```sh
julia --project=docs -e "using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate();"
julia --project=docs docs/make.jl
```