diff --git a/docs/src/.vitepress/config.mts b/docs/src/.vitepress/config.mts index 61c102d1..025f1107 100644 --- a/docs/src/.vitepress/config.mts +++ b/docs/src/.vitepress/config.mts @@ -18,7 +18,6 @@ const navTemp = { { text: 'Get Started', link: '/get_started' }, { text: 'Manual', items: [ - { text: 'Array Operations', link: '/manual/array_operations' }, { text: 'Data Sources', link: '/manual/data_sources' }, { text: 'Methods', items: [ @@ -51,10 +50,11 @@ const navTemp = { items: [ { text: '', items: [ - { text: 'Plots.jl', link: '/manual/plotting' }, - { text: 'Makie.jl', link: 'manual/plot_makie' }, + { text: 'Plots.jl', link: '/tutorials/plotting' }, + { text: 'Makie.jl', link: '/tutorials/plot_makie' }, ] }, + { text: 'Array Operations', link: '/tutorials/array_operations' }, { text: 'Spatial mean', link: '/tutorials/spatial_mean' }, { text: 'Reprojection and resampling', link: '/tutorials/resample_warp'}, { text: 'Species Distribution Modelling', link: '/tutorials/gbif_wflow' }, @@ -124,9 +124,9 @@ export default defineConfig({ { text: 'Get Started', link: '/get_started' }, { text: 'Manual', items: [ - { text: 'Array Operations', link: '/manual/array_operations' }, { text: 'Data Sources', link: '/manual/data_sources' }, { text: 'Methods', + collapsed: true, items: [ { text: 'Overview', link: '/manual/methods' }, { text: 'rasterize', link: '/api#Rasters.rasterize' }, @@ -157,10 +157,11 @@ export default defineConfig({ items: [ { text: '', items: [ - { text: 'Plots.jl', link: '/manual/plotting' }, - { text: 'Makie.jl', link: 'manual/plot_makie' }, + { text: 'Plots.jl', link: '/tutorials/plotting' }, + { text: 'Makie.jl', link: '/tutorials/plot_makie' }, ] - }, + }, + { text: 'Array Operations', link: '/tutorials/array_operations' }, { text: 'Spatial mean', link: '/tutorials/spatial_mean' }, { text: 'Reprojection and resampling', link: '/tutorials/resample_warp'}, { text: 'Species Distribution Modelling', link: '/tutorials/gbif_wflow' }, diff --git a/docs/src/manual/array_operations.md b/docs/src/tutorials/array_operations.md similarity index 100% rename from docs/src/manual/array_operations.md rename to docs/src/tutorials/array_operations.md diff --git a/docs/src/manual/plot_makie.md b/docs/src/tutorials/plot_makie.md similarity index 100% rename from docs/src/manual/plot_makie.md rename to docs/src/tutorials/plot_makie.md diff --git a/docs/src/manual/plotting.md b/docs/src/tutorials/plotting.md similarity index 100% rename from docs/src/manual/plotting.md rename to docs/src/tutorials/plotting.md