-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmake.jl
61 lines (56 loc) · 1.44 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
using Documenter
using Markdown
# Types and functions to generate a Markdown table with links to package badges etc.
struct PackageDefinition
name :: String
url :: String
docs :: Vector{Pair{String, String}} # type => URL
buildbadges :: Vector{Pair{String, String}} # badge => URL
end
function markdown(p::PackageDefinition)
row = Any[]
push!(row, Markdown.Link(p.name, p.url))
push!(row, [
Markdown.Link(
[Markdown.Image("https://img.shields.io/badge/docs-$(ver)-blue.svg", "$(ver)")],
url
)
for (ver, url) in p.docs
])
push!(row, [
Markdown.Link(
[Markdown.Image(image, "")],
url
)
for (image, url) in p.buildbadges
])
end
function package_table_markdown(packages)
titles = map(["Package", "Documentation", "Coverage"]) do s
Markdown.Bold(s)
end
table = Markdown.Table([titles], [:l, :c, :c])
for p in packages
push!(table.rows, markdown(p))
end
Markdown.MD(table)
end
# Build the docs
makedocs(
sitename = "JuliaDocs",
pages = [
"Home" => "index.md",
],
format = Documenter.HTML(
edit_link = "source",
assets = ["assets/favicon.ico"],
analytics = "UA-136089579-1",
),
)
deploydocs(
repo = "github.com/JuliaDocs/juliadocs.github.io.git",
branch = "master",
devbranch = "source",
versions = nothing,
push_preview = true,
)