diff --git a/docs/make.jl b/docs/make.jl index ecc821d..1f3e829 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -7,7 +7,8 @@ makedocs( format = Documenter.HTML(), modules = [OnlinePortfolioAnalytics], pages = [ - "Home" => "index.md" + "Home" => "index.md", + "API" => "api.md" ] ) deploydocs(; repo = "github.com/femtotrader/OnlinePortfolioAnalytics.jl") diff --git a/docs/src/api.md b/docs/src/api.md new file mode 100644 index 0000000..7d9acc6 --- /dev/null +++ b/docs/src/api.md @@ -0,0 +1,9 @@ +# API Documentation + +## Portfolio analytics + +## Other + +```@docs +OnlinePortfolioAnalytics.Prod +``` diff --git a/docs/src/index.md b/docs/src/index.md index 88f01e2..e7cebcb 100644 --- a/docs/src/index.md +++ b/docs/src/index.md @@ -11,5 +11,6 @@ It depends especially on [OnlineStatsBase.jl](https://joshday.github.io/OnlineSt ```@contents Pages = [ "index.md", + "api.md" ] ```