SKopecz / PositiveIntegrators.jl

A Julia library of positivity-preserving time integration methods
https://skopecz.github.io/PositiveIntegrators.jl/
MIT License
13 stars 4 forks source link

allow building the docs locally #13

Closed ranocha closed 10 months ago

ranocha commented 10 months ago

@SKopecz This PR allows building the docs locally. Start Julia in the directory of your local clone of PositiveIntegrators.jl and execute

julia> using Pkg; Pkg.activate("docs"); Pkg.update()

julia> include("docs/make.jl")

Then, you get the local version in docs/build; the entry point is docs/build/index.html.

SKopecz commented 10 months ago

Works. Thanks!