11using Documenter
22using DiffinDiffs
3+ using DocumenterCitations
4+ using StatsProcedures
5+ using Vcov
36
4- makedocs (
7+ bib = CitationBibliography (joinpath (@__DIR__ , " ../paper/paper.bib" ), sorting= :nyt )
8+
9+ makedocs (bib,
510 modules = [DiffinDiffsBase, InteractionWeightedDIDs],
611 format = Documenter. HTML (
12+ assets = [" assets/favicon.ico" ],
713 canonical = " https://JuliaDiffinDiffs.github.io/DiffinDiffs.jl/stable/" ,
814 prettyurls = get (ENV , " CI" , nothing ) == " true" ,
9- collapselevel = 1
15+ collapselevel = 2 ,
16+ ansicolor = true
1017 ),
1118 sitename = " DiffinDiffs.jl" ,
1219 authors = " Junyuan Chen" ,
@@ -18,13 +25,24 @@ makedocs(
1825 " Library" => [
1926 " Treatment Types" => " lib/treatments.md" ,
2027 " Parallel Types" => " lib/parallels.md" ,
21- " Treatment Terms" => " lib/terms.md" ,
28+ " Formula Terms" => " lib/terms.md" ,
29+ " Estimators" => " lib/estimators.md" ,
30+ " Inference" => " lib/inference.md" ,
31+ " Procedures" => " lib/procedures.md" ,
32+ " Results" => " lib/results.md" ,
33+ " Tables" => " lib/tables.md" ,
34+ " Panel Operations" => " lib/panel.md" ,
35+ " ScaledArrays" => " lib/ScaledArrays.md" ,
36+ " StatsProcedures" => " lib/StatsProcedures.md" ,
2237 " Miscellanea" => " lib/miscellanea.md"
2338 ],
2439 " About" => [
40+ " References" => " about/references.md" ,
41+ " License" => " about/license.md"
2542 ]
2643 ],
27- workdir = joinpath (@__DIR__ , " .." )
44+ workdir = joinpath (@__DIR__ , " .." ),
45+ doctest = false
2846)
2947
3048deploydocs (
0 commit comments