-
-
Notifications
You must be signed in to change notification settings - Fork 108
/
Copy pathmake.jl
74 lines (71 loc) · 2.17 KB
/
make.jl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
cd(@__DIR__)
using Pkg;
Pkg.activate(@__DIR__);
push!(LOAD_PATH, "../")
using TheAlgorithms
using Documenter
DocMeta.setdocmeta!(
TheAlgorithms,
:DocTestSetup,
:(using TheAlgorithms,
TheAlgorithms.Basic,
TheAlgorithms.Basic.Hanoi,
TheAlgorithms.Cipher,
TheAlgorithms.Conversions,
TheAlgorithms.DataStructure,
TheAlgorithms.DataStructure.LinkedList,
TheAlgorithms.DataStructure.FenwickTree,
TheAlgorithms.DynamicProgramming,
TheAlgorithms.Graph,
TheAlgorithms.KnapSack,
TheAlgorithms.LongSubSeq,
TheAlgorithms.Math,
TheAlgorithms.MatrixAlgo,
TheAlgorithms.ML,
TheAlgorithms.ProjectEuler,
TheAlgorithms.ProjectRosalind,
TheAlgorithms.Scheduling,
TheAlgorithms.Searches,
TheAlgorithms.Sorts,
TheAlgorithms.StatAlgo,
TheAlgorithms.StringAlgo);
recursive = true,
)
makedocs(;
modules = [
TheAlgorithms,
TheAlgorithms.Basic,
TheAlgorithms.Basic.Hanoi,
TheAlgorithms.Cipher,
TheAlgorithms.Conversions,
TheAlgorithms.DataStructure,
TheAlgorithms.DataStructure.LinkedList,
TheAlgorithms.DataStructure.FenwickTree,
TheAlgorithms.DynamicProgramming,
TheAlgorithms.Graph,
TheAlgorithms.KnapSack,
TheAlgorithms.LongSubSeq,
TheAlgorithms.Math,
TheAlgorithms.MatrixAlgo,
TheAlgorithms.ML,
TheAlgorithms.ProjectEuler,
TheAlgorithms.ProjectRosalind,
TheAlgorithms.Scheduling,
TheAlgorithms.Searches,
TheAlgorithms.Sorts,
TheAlgorithms.StatAlgo,
TheAlgorithms.StringAlgo,
],
authors = "Panquesito7",
repo = "https://github.com/TheAlgorithms/Julia/blob/{commit}{path}#{line}",
sitename = "TheAlgorithms.jl",
format = Documenter.HTML(;
prettyurls = get(ENV, "CI", "false") == "true",
canonical = "https://TheAlgorithms.github.io/Julia",
assets = String[],
size_threshold = 409600,
),
pages = ["Home" => "index.md"],
doctest = true,
)
deploydocs(; repo = "github.com/TheAlgorithms/Julia", devbranch = "main")