Skip to content

Commit d3d1d15

Browse files
committed
Add remote repository configuration for developed packages
Fixes MissingRemoteError for StochasticDiffEq docstrings by adding remotes configuration to makedocs(). Since OrdinaryDiffEq and StochasticDiffEq are developed via Pkg.develop(), Documenter needs explicit remote repository information to generate proper source URLs for their docstrings. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent 72c6ee1 commit d3d1d15

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

docs/make.jl

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,10 @@ makedocs(
9898
DiffEqCallbacks,
9999
Sundials, DASKR
100100
],
101+
remotes = Dict(
102+
OrdinaryDiffEq => Documenter.Remotes.GitHub("SciML", "OrdinaryDiffEq.jl"),
103+
StochasticDiffEq => Documenter.Remotes.GitHub("SciML", "StochasticDiffEq.jl")
104+
),
101105
linkcheck = true,
102106
linkcheck_ignore = ["https://www.izhikevich.org/publications/spikes.htm",
103107
"https://biojulia.net/post/hardware/",

0 commit comments

Comments
 (0)