Skip to content

Commit

Permalink
Refactor file paths in documentation to use 'library' directory
Browse files Browse the repository at this point in the history
  • Loading branch information
aadimator committed Aug 8, 2024
1 parent 9c99d48 commit 69d2ec2
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 5 deletions.
6 changes: 3 additions & 3 deletions docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ makedocs(;
"Basic Usage" => "man/basics.md",
"Convert Seurat Objects" => "man/seurat_conversion.md",
"API" => Any[
"Types" => "lib/types.md",
"Functions" => "lib/functions.md",
hide("Internals" => "lib/internals.md"),
"Types" => "library/types.md",
"Functions" => "library/functions.md",
# hide("Internals" => "lib/internals.md"),
]
],
)
Expand Down
3 changes: 1 addition & 2 deletions docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,5 @@ Depth = 2
## Index

```@index
Pages = ["lib/types.md", "lib/functions.md"]
Pages = ["library/types.md", "library/functions.md"]
```

8 changes: 8 additions & 0 deletions docs/src/library/functions.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
```@index
Pages = ["functions.md"]
```

```@autodocs
Modules = [ISCHIA]
Filter = t -> typeof(t) !== CooccurOutput
```
7 changes: 7 additions & 0 deletions docs/src/library/types.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
```@index
Pages = ["types.md"]
```

```@docs
CooccurOutput
```

0 comments on commit 69d2ec2

Please sign in to comment.