You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Removed API reference content from index page generation
- Index page now contains only README and reproducibility content
- Clean documentation structure with direct category navigation
- Documentation builds successfully with minimal warnings
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <[email protected]>
Copy file name to clipboardExpand all lines: docs/make.jl
-43Lines changed: 0 additions & 43 deletions
Original file line number
Diff line number
Diff line change
@@ -24,49 +24,6 @@ open(joinpath(@__DIR__, "src", "index.md"), "w") do io
24
24
println(io, line)
25
25
end
26
26
27
-
# Add API reference content
28
-
println(io, "")
29
-
println(io, "## API Reference")
30
-
println(io, "")
31
-
println(io, "```@docs")
32
-
println(io, "FiniteDiff")
33
-
println(io, "```")
34
-
println(io, "")
35
-
println(io, "FiniteDiff.jl provides fast, non-allocating finite difference calculations with support for sparsity patterns and various array types. The API is organized into several categories:")
36
-
println(io, "")
37
-
println(io, "### Function Categories")
38
-
println(io, "")
39
-
println(io, "- **[Derivatives](@ref derivatives)**: Single and multi-point derivatives of scalar functions")
40
-
println(io, "- **[Gradients](@ref gradients)**: Gradients of scalar-valued functions with respect to vector inputs")
41
-
println(io, "- **[Jacobians](@ref jacobians)**: Jacobian matrices of vector-valued functions, including sparse Jacobian support")
42
-
println(io, "- **[Hessians](@ref hessians)**: Hessian matrices of scalar-valued functions")
43
-
println(io, "- **[Jacobian-Vector Products](@ref jvp)**: Efficient computation of directional derivatives without forming full Jacobians")
44
-
println(io, "- **[Utilities](@ref utilities)**: Internal utilities and helper functions")
45
-
println(io, "")
46
-
println(io, "### Quick Start")
47
-
println(io, "")
48
-
println(io, "All functions follow a consistent API pattern:")
0 commit comments