@@ -12,8 +12,8 @@ api_dir = joinpath(@__DIR__, "src", "api")
1212api_files = map (x -> joinpath (" api" , x), readdir (api_dir))
1313tutorial_files = readdir (tutorial_dir)
1414md_tutorial_files = [split (file, " ." )[1 ] * " .md" for file in tutorial_files]
15- benchmark_files = readdir (benchmarks_dir)
16- md_benchmark_files = [split (file, " ." )[1 ] * " .md" for file in benchmark_files]
15+ benchmark_files = [ joinpath ( " benchmarks " , e) for e in readdir (benchmarks_dir)]
16+ # md_benchmark_files = [split(file, ".")[1] * ".md" for file in benchmark_files]
1717
1818include_tutorial = true
1919
@@ -25,20 +25,14 @@ if include_tutorial
2525end
2626
2727makedocs (;
28- modules= [DecisionFocusedLearningBenchmarks, DecisionFocusedLearningBenchmarks . Warcraft ],
28+ modules= [DecisionFocusedLearningBenchmarks],
2929 authors= " Members of JuliaDecisionFocusedLearning" ,
3030 sitename= " DecisionFocusedLearningBenchmarks.jl" ,
31- format= Documenter. HTML (),
31+ format= Documenter. HTML (; size_threshold = typemax (Int) ),
3232 pages= [
3333 " Home" => " index.md" ,
3434 " Tutorials" => include_tutorial ? md_tutorial_files : [],
35- " Benchmark problems list" => [
36- " benchmarks/subset_selection.md" ,
37- " benchmarks/fixed_size_shortest_path.md" ,
38- " benchmarks/warcraft.md" ,
39- " benchmarks/portfolio_optimization.md" ,
40- " benchmarks/vsp.md" ,
41- ],
35+ " Benchmark problems list" => benchmark_files,
4236 " API reference" => api_files,
4337 ],
4438)
0 commit comments