From cc4f9c0a22bf705194b336edf0980de33eaa9c98 Mon Sep 17 00:00:00 2001 From: Emmanuel Lujan Date: Sat, 13 Jul 2024 16:08:47 -0400 Subject: [PATCH] Fix paths --- docs/make.jl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/make.jl b/docs/make.jl index 77eb6ea..e780f9b 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -10,15 +10,15 @@ DocMeta.setdocmeta!( recursive = true, ) +ENV["BASE_PATH"] = joinpath(@__DIR__, "../") + # Citations #################################################################### +bib = CitationBibliography(joinpath(@__DIR__, "citation.bib")) -bib = CitationBibliography("citation.bib") # Generate examples ############################################################ -ENV["BASE_PATH"] = joinpath(@__DIR__, "../") const examples_path = joinpath(@__DIR__, "..", "examples") const output_path = joinpath(@__DIR__, "src/generated") - function create_examples(examples, examples_path, output_path) for (_, example_path) in examples s = split(example_path, "/")