Skip to content

Commit 29bf628

Browse files
committed
Fix makepdf
1 parent 51920c4 commit 29bf628

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

docs/makepdf.jl

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
using DocumenterCitations
2+
using DocumenterInterLinks
23
using Documenter
34
using Pkg
45

@@ -19,6 +20,11 @@ bib = CitationBibliography(
1920
style=:numeric # default
2021
)
2122

23+
links = InterLinks(
24+
"Documenter" => "https://documenter.juliadocs.org/stable/",
25+
"Bijections" => "https://docs.juliahub.com/General/Bijections/stable/",
26+
)
27+
2228
println("Starting makedocs")
2329

2430
include("custom_styles/enumauthoryear.jl")
@@ -39,7 +45,7 @@ withenv("DOCUMENTER_BUILD_PDF" => "1") do
3945
"Internals" => "internals.md",
4046
"References" => "references.md",
4147
],
42-
plugins=[bib],
48+
plugins=[bib, links],
4349
)
4450
end
4551

0 commit comments

Comments
 (0)