https://github.com/JuliaLang/julia
Raw File
Tip revision: 9eade6195eb1890afb3fc071a25718981e4185fa authored by Kristoffer Carlsson on 12 September 2021, 06:45:08 UTC
Merge pull request #42188 from JuliaLang/kc/1.7-rc1
Tip revision: 9eade61
README.md
# Julia Documentation README

Julia's documentation is written in Markdown. A reference of all supported syntax can be found in the [manual](https://docs.julialang.org/en/v1/stdlib/Markdown/). All documentation can be found in the Markdown files in `doc/src/` and the docstrings in Julia source files in `base/` and `stdlib/`.

## Requirements

This documentation is built using the [Documenter.jl](https://github.com/JuliaDocs/Documenter.jl) package.

All dependencies are automatically installed into a sandboxed package directory in `doc/deps/` to avoid interfering with user-installed packages.

## Building

To build Julia's documentation run

```sh
$ make docs
```

from the root directory. This will build the HTML documentation and output it to the `doc/_build/` folder.

## Testing

To run the doctests found in the manual run

```sh
$ make -C doc doctest=true
```

from the root directory.
back to top