Skip to content

Commit

Permalink
fix add broken links
Browse files Browse the repository at this point in the history
  • Loading branch information
lazarusA committed Sep 11, 2024
1 parent 4f4b263 commit 67b5a87
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
3 changes: 3 additions & 0 deletions docs/src/.vitepress/config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ export default defineConfig({
lastUpdated: true,
// cleanUrls: true,
outDir: 'REPLACE_ME_DOCUMENTER_VITEPRESS', // This is required for MarkdownVitepress to work correctly...
head: [
['link', { rel: 'icon', href: 'REPLACE_ME_DOCUMENTER_VITEPRESS_FAVICON' }],
],
// ignoreDeadLinks: true,

markdown: {
Expand Down
Binary file added docs/src/assets/favicon.ico
Binary file not shown.
7 changes: 4 additions & 3 deletions docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ hero:
src: /logo.png
alt: VitePress
actions:
- theme: alt
- theme: brand
text: Get Started
link: /get_started
- theme: alt
Expand All @@ -24,12 +24,13 @@ hero:
features:
- title: Flexible I/O capabilities
details: Open and operate on <font color="#D27D2D">NetCDF</font> and <font color="#D27D2D">Zarr</font> datasets directly. Or bring in data from other sources with ArchGDAL.jl, GRIBDatasets.jl, GeoJSON.jl, HDF5.jl, Shapefile.jl, GeoParquet.jl, etc.
link: /UserGuide/openZarr
link: /UserGuide/read
- title: Interoperability
details: Well integrated with Julia's ecosystem, i.e., distributed operations are native. And plotting with <font color="#D27D2D">Makie.jl</font> is well supported.
- title: Named dimensions and GroupBy(in memory)
details: Apply operations over named dimensions, select values by labels and integers as well as efficient split-apply-combine operations with <font color="#D27D2D">groupby</font> via DimensionalData.jl.
link: /UserGuide/group_by
link: /UserGuide/group
- title: Efficiency
details: Efficient <font color="#D27D2D">mapslices(x) </font> and <font color="#D27D2D">mapCube</font> operations on huge multiple arrays, optimized for high-latency data access (object storage, compressed datasets).
link: /UserGuide/compute
```

0 comments on commit 67b5a87

Please sign in to comment.