From 36dbfbe8849b2ee92deaf79e09745c3692836321 Mon Sep 17 00:00:00 2001 From: femtotrader Date: Wed, 24 Apr 2024 11:06:32 +0200 Subject: [PATCH] WIP --- docs/make.jl | 3 ++- docs/src/api.md | 9 +++++++++ docs/src/index.md | 1 + 3 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 docs/src/api.md 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" ] ```