11using Term, Documenter
22
3- DocMeta. setdocmeta! (Term, :DocTestSetup , :(using Term); recursive = true )
3+ (@main )(args) = begin
4+ DocMeta. setdocmeta! (Term, :DocTestSetup , :(using Term); recursive = true )
45
5- makedocs (;
6- modules = [Term],
7- authors
= " FedeClaudi <[email protected] > and contributors" ,
8- repo = " https://github.com/FedeClaudi/Term.jl/blob/{commit}{path}#{line}" ,
9- sitename = " Term.jl" ,
10- format = Documenter. HTML (;
11- prettyurls = get (ENV , " CI" , " false" ) == " true" ,
12- canonical = " https://FedeClaudi.github.io/Term.jl" ,
13- assets = String[],
14- collapselevel = 1 ,
15- ),
16- strict = false ,
17- pages = [
18- " Home" => " index.md" ,
19- " Basics" => Any[
20- " basics/basics.md" ,
21- " basics/styled_text.md" ,
22- " basics/colors_and_theme.md" ,
23- " basics/renderables.md" ,
24- " basics/tprint.md" ,
25- " basics/console.md" ,
26- " basics/prompt.md" ,
27- " basics/markdown.md" ,
6+ makedocs (;
7+ modules = [Term],
8+ authors
= " FedeClaudi <[email protected] > and contributors" ,
9+ repo = " https://github.com/FedeClaudi/Term.jl/blob/{commit}{path}#{line}" ,
10+ sitename = " Term.jl" ,
11+ format = Documenter. HTML (;
12+ prettyurls = get (ENV , " CI" , " false" ) == " true" ,
13+ canonical = " https://FedeClaudi.github.io/Term.jl" ,
14+ assets = String[],
15+ collapselevel = 1 ,
16+ ),
17+ warnonly = true ,
18+ pages = [
19+ " Home" => " index.md" ,
20+ " Basics" => Any[
21+ " basics/basics.md" ,
22+ " basics/styled_text.md" ,
23+ " basics/colors_and_theme.md" ,
24+ " basics/renderables.md" ,
25+ " basics/tprint.md" ,
26+ " basics/console.md" ,
27+ " basics/prompt.md" ,
28+ " basics/markdown.md" ,
29+ ],
30+ " Renderables" => Any[
31+ " ren/intro.md" ,
32+ " ren/text.md" ,
33+ " ren/panel.md" ,
34+ " ren/table.md" ,
35+ " ren/layout_rens.md" ,
36+ " ren/annotation.md" ,
37+ " ren/dendogram.md" ,
38+ " ren/tree.md" ,
39+ ],
40+ " Layout" => Any[
41+ " layout/layout.md" ,
42+ " layout/nesting.md" ,
43+ " layout/stacking.md" ,
44+ " layout/justify.md" ,
45+ " layout/grid.md" ,
46+ " layout/compositor.md" ,
47+ ],
48+ " Advanced" => Any[
49+ " adv/adv.md" ,
50+ " adv/repr.md" ,
51+ " adv/progressbars.md" ,
52+ " adv/logging.md" ,
53+ " adv/errors_tracebacks.md" ,
54+ " adv/introspection.md" ,
55+ ],
56+ " Live" => [
57+ " live/intro.md" ,
58+ " live/app_intro.md" ,
59+ " live/widgets.md" ,
60+ " live/keyboard_input.md" ,
61+ ],
62+ " API" => Any[
63+ " api/api_term.md" ,
64+ " api/api_boxes.md" ,
65+ " api/api_colors.md" ,
66+ " api/api_console.md" ,
67+ " api/api_compositors.md" ,
68+ " api/api_dendograms.md" ,
69+ " api/api_errors.md" ,
70+ " api/api_grid.md" ,
71+ " api/api_introspection.md" ,
72+ " api/api_layout.md" ,
73+ " api/api_logs.md" ,
74+ " api/api_markdown.md" ,
75+ " api/api_measures.md" ,
76+ " api/api_panels.md" ,
77+ " api/api_renderables.md" ,
78+ " api/api_repr.md" ,
79+ " api/api_segments.md" ,
80+ " api/api_style.md" ,
81+ " api/api_tables.md" ,
82+ " api/api_tprint.md" ,
83+ " api/api_trees.md" ,
84+ ],
2885 ],
29- " Renderables" => Any[
30- " ren/intro.md" ,
31- " ren/text.md" ,
32- " ren/panel.md" ,
33- " ren/table.md" ,
34- " ren/layout_rens.md" ,
35- " ren/annotation.md" ,
36- " ren/dendogram.md" ,
37- " ren/tree.md" ,
38- ],
39- " Layout" => Any[
40- " layout/layout.md" ,
41- " layout/nesting.md" ,
42- " layout/stacking.md" ,
43- " layout/justify.md" ,
44- " layout/grid.md" ,
45- " layout/compositor.md" ,
46- ],
47- " Advanced" => Any[
48- " adv/adv.md" ,
49- " adv/repr.md" ,
50- " adv/progressbars.md" ,
51- " adv/logging.md" ,
52- " adv/errors_tracebacks.md" ,
53- " adv/introspection.md" ,
54- ],
55- " Live" => [
56- " live/intro.md" ,
57- " live/app_intro.md" ,
58- " live/widgets.md" ,
59- " live/keyboard_input.md" ,
60- ],
61- " API" => Any[
62- " api/api_term.md" ,
63- " api/api_boxes.md" ,
64- " api/api_colors.md" ,
65- " api/api_console.md" ,
66- " api/api_compositors.md" ,
67- " api/api_dendograms.md" ,
68- " api/api_errors.md" ,
69- " api/api_grid.md" ,
70- " api/api_introspection.md" ,
71- " api/api_layout.md" ,
72- " api/api_logs.md" ,
73- " api/api_markdown.md" ,
74- " api/api_measures.md" ,
75- " api/api_panels.md" ,
76- " api/api_renderables.md" ,
77- " api/api_repr.md" ,
78- " api/api_segments.md" ,
79- " api/api_style.md" ,
80- " api/api_tables.md" ,
81- " api/api_tprint.md" ,
82- " api/api_trees.md" ,
83- ],
84- ],
85- )
86+ )
8687
87- deploydocs (; repo = " github.com/FedeClaudi/Term.jl" )
88+ deploydocs (; repo = " github.com/FedeClaudi/Term.jl" )
89+ end
0 commit comments