Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```