File tree Expand file tree Collapse file tree 3 files changed +17
-1
lines changed
Expand file tree Collapse file tree 3 files changed +17
-1
lines changed Original file line number Diff line number Diff line change 22Documenter = " e30172f5-a6a5-5a46-863b-614d45cd2de4"
33DocumenterVitepress = " 4710194d-e776-4893-9690-8d956a29c365"
44DocumenterCitations = " daee34ce-89f3-4625-b898-19384cb65244"
5+ DocumenterInterLinks = " d12716ef-a0f6-4df4-a9f1-a5a34e75c656"
56
67[sources ]
78DocumenterVitepress = { path = " .." }
Original file line number Diff line number Diff line change 11using Documenter
22using DocumenterVitepress
33using DocumenterCitations
4+ using DocumenterInterLinks
45
56# Handle DocumenterCitations integration - if you're running this, then you don't need anything here!!
67documenter_citations_dir = dirname (dirname (pathof (DocumenterCitations)))
@@ -23,6 +24,17 @@ bib = CitationBibliography(
2324 joinpath (@__DIR__ , " src" , " refs.bib" );
2425 style= :numeric # default
2526)
27+
28+ # Handle DocumenterInterLinks integration
29+ links = InterLinks (
30+ " sphinx" => " https://www.sphinx-doc.org/en/master/" ,
31+ " Documenter" => (
32+ " https://documenter.juliadocs.org/stable/" ,
33+ " https://documenter.juliadocs.org/stable/objects.inv" ,
34+ ),
35+ );
36+
37+
2638# dev local
2739
2840makedocs (;
@@ -57,7 +69,7 @@ makedocs(;
5769 ],
5870 " api.md" ,
5971 ],
60- plugins = [bib,],
72+ plugins = [bib, links ],
6173)
6274
6375
Original file line number Diff line number Diff line change @@ -4,6 +4,9 @@ outline: deep
44---
55```
66
7+ See also the section about Documenter's [ Writers] (@extref Documenter).
8+
9+
710## Public API
811
912``` @meta
You can’t perform that action at this time.
0 commit comments