We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 51920c4 commit 29bf628Copy full SHA for 29bf628
docs/makepdf.jl
@@ -1,4 +1,5 @@
1
using DocumenterCitations
2
+using DocumenterInterLinks
3
using Documenter
4
using Pkg
5
@@ -19,6 +20,11 @@ bib = CitationBibliography(
19
20
style=:numeric # default
21
)
22
23
+links = InterLinks(
24
+ "Documenter" => "https://documenter.juliadocs.org/stable/",
25
+ "Bijections" => "https://docs.juliahub.com/General/Bijections/stable/",
26
+)
27
+
28
println("Starting makedocs")
29
30
include("custom_styles/enumauthoryear.jl")
@@ -39,7 +45,7 @@ withenv("DOCUMENTER_BUILD_PDF" => "1") do
39
45
"Internals" => "internals.md",
40
46
"References" => "references.md",
41
47
],
42
- plugins=[bib],
48
+ plugins=[bib, links],
43
49
44
50
end
51
0 commit comments