1
1
using Documenter, StructuralEquationModels
2
2
3
3
makedocs (
4
- sitename= " StructuralEquationModels.jl" ,
4
+ sitename = " StructuralEquationModels.jl" ,
5
5
pages = [
6
6
" index.md" ,
7
7
" Tutorials" => [
@@ -11,67 +11,62 @@ makedocs(
11
11
" tutorials/specification/specification.md" ,
12
12
" tutorials/specification/graph_interface.md" ,
13
13
" tutorials/specification/ram_matrices.md" ,
14
- " tutorials/specification/parameter_table.md"
14
+ " tutorials/specification/parameter_table.md" ,
15
15
],
16
16
" Model Construction" => [
17
17
" tutorials/construction/construction.md" ,
18
18
" tutorials/construction/outer_constructor.md" ,
19
- " tutorials/construction/build_by_parts.md"
20
- ],
21
- " Optimization Backends" => [
22
- " tutorials/backends/optim.md" ,
23
- " tutorials/backends/nlopt.md"
19
+ " tutorials/construction/build_by_parts.md" ,
24
20
],
21
+ " Optimization Backends" =>
22
+ [" tutorials/backends/optim.md" , " tutorials/backends/nlopt.md" ],
25
23
" Model Fitting" => " tutorials/fitting/fitting.md" ,
26
24
" Model Inspection" => " tutorials/inspection/inspection.md" ,
27
25
" Mean Structures" => " tutorials/meanstructure.md" ,
28
26
" Collections" => [
29
27
" tutorials/collection/collection.md" ,
30
- " tutorials/collection/multigroup.md"
28
+ " tutorials/collection/multigroup.md" ,
31
29
],
32
- " Constraints" => " tutorials/constraints/constraints.md"
30
+ " Constraints" => " tutorials/constraints/constraints.md" ,
33
31
],
34
32
" Developer documentation" => [
35
33
" Extending the package" => " developer/extending.md" ,
36
34
" Custom loss functions" => " developer/loss.md" ,
37
35
" Custom imply types" => " developer/imply.md" ,
38
36
" Custom optimizer types" => " developer/optimizer.md" ,
39
37
" Custom observed types" => " developer/observed.md" ,
40
- " Custom model types" => " developer/sem.md"
41
- ],
42
- " Advanced tutorials" => [
43
- " Regularization" => " tutorials/regularization/regularization.md"
38
+ " Custom model types" => " developer/sem.md" ,
44
39
],
40
+ " Advanced tutorials" =>
41
+ [" Regularization" => " tutorials/regularization/regularization.md" ],
45
42
" Performance tips" => [
46
43
" Model sorting" => " performance/sorting.md" ,
47
44
" MKL" => " performance/mkl.md" ,
48
45
" Simulation studies" => " performance/simulation.md" ,
49
46
" Symbolic precomputation" => " performance/symbolic.md" ,
50
47
" Starting values" => " performance/starting_values.md" ,
51
- " Parametric Types" => " performance/parametric.md"
48
+ " Parametric Types" => " performance/parametric.md" ,
52
49
],
53
50
" Internals and design" => [
54
51
" Internals and design" => " internals/internals.md" ,
55
52
" files" => " internals/files.md" ,
56
- " types" => " internals/types.md"
53
+ " types" => " internals/types.md" ,
57
54
],
58
- " Complementary material" => [
59
- " Mathematical appendix" => " complementary/maths.md"
60
- ]
55
+ " Complementary material" => [" Mathematical appendix" => " complementary/maths.md" ],
61
56
],
62
57
format = Documenter. HTML (
63
58
prettyurls = get (ENV , " CI" , nothing ) == " true" ,
64
59
assets = [" assets/favicon_zeta.ico" ],
65
60
ansicolor = true ,
66
- collapselevel = 1
61
+ collapselevel = 1 ,
67
62
),
68
- doctest = false
63
+ doctest = false ,
69
64
)
70
65
71
66
# doctest(StructuralEquationModels, fix=true)
72
67
73
68
deploydocs (
74
69
repo = " github.com/StructuralEquationModels/StructuralEquationModels.jl" ,
75
70
devbranch = " devel" ,
76
- push_preview = " push_preview=true" ∈ ARGS
71
+ push_preview = " push_preview=true" ∈ ARGS ,
77
72
)
0 commit comments