-
Notifications
You must be signed in to change notification settings - Fork 142
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix formatting, docs. Import rather than alias symbols.
- Loading branch information
Showing
9 changed files
with
232 additions
and
118 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,21 +4,34 @@ using H5Zblosc | |
using H5Zbzip2 | ||
using H5Zlz4 | ||
using H5Zzstd | ||
using H5Zbitshuffle | ||
using MPI # needed to generate docs for parallel HDF5 API | ||
|
||
DocMeta.setdocmeta!(HDF5, :DocTestSetup, :(using HDF5); recursive=true) | ||
|
||
makedocs(; | ||
sitename="HDF5.jl", | ||
modules=[HDF5, H5Zblosc, H5Zbzip2, H5Zlz4, H5Zzstd], | ||
modules=[ | ||
HDF5, | ||
H5Zblosc, | ||
H5Zbzip2, | ||
H5Zlz4, | ||
H5Zzstd, | ||
H5Zbitshuffle, | ||
Base.get_extension(HDF5, :BloscExt), | ||
Base.get_extension(HDF5, :CodecBzip2Ext), | ||
Base.get_extension(HDF5, :CodecLz4Ext), | ||
Base.get_extension(HDF5, :CodecZstdExt), | ||
Base.get_extension(HDF5, :bitshuffle_jll_ext), | ||
], | ||
authors="Mustafa Mohamad <[email protected]> and contributors", | ||
format=Documenter.HTML(; | ||
prettyurls=get(ENV, "CI", "false") == "true", | ||
canonical="https://JuliaIO.github.io/HDF5.jl", | ||
assets=String[], | ||
sidebar_sitename=false | ||
sidebar_sitename=false, | ||
size_threshold_ignore=["api_bindings.md",] | ||
), | ||
strict=true, | ||
pages=[ | ||
"Home" => "index.md", | ||
"Interface" => [ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters