diff --git a/docs/make.jl b/docs/make.jl index ff45df0..96b1701 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -9,7 +9,7 @@ makedocs( pages = [ "Home" => "index.md", "Tutorial" => "tutorial.md", - "Function Reference" => "reference.md", + "API Reference" => "reference.md", "Storage Backends" => "storage.md", "Accessing cloud data Examples" => "s3examples.md", "Operations on Zarr Arrays" => "operations.md", diff --git a/docs/src/reference.md b/docs/src/reference.md index 0ec9c65..f9d4402 100644 --- a/docs/src/reference.md +++ b/docs/src/reference.md @@ -1,13 +1,22 @@ -## Array creation +# API reference + +## Arrays ```@docs zcreate zzeros ``` +## Group hierarchy + +```@autodocs +Modules = [Zarr] +Pages = ["ZGroup.jl"] +``` + ## Compressors -```@docs -Zarr.BloscCompressor -Zarr.NoCompressor +```@autodocs +Modules = [Zarr] +Pages = ["Compressors.jl"] ```