Skip to content

Commit 5607afb

Browse files
authored
Fix docs (#6)
* fix docs * version
1 parent 1052c99 commit 5607afb

File tree

3 files changed

+9
-30
lines changed

3 files changed

+9
-30
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "PredefinedDynamicalSystems"
22
uuid = "31e2f376-db9e-427a-b76e-a14f56347a14"
33
repo = "https://github.com/JuliaDynamics/PredefinedDynamicalSystems.jl.git"
4-
version = "1.0.1"
4+
version = "1.0.2"
55

66
[deps]
77
DynamicalSystemsBase = "6e36e845-645a-534a-86f2-f5d4aa5a06b4"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# PredefinedDynamicalSystems.jl
22

3-
[![](https://img.shields.io/badge/docs-dev-blue.svg)](https://JuliaDynamics.github.io/PredefinedDynamicalSystems.jl/dev)
3+
[![](https://img.shields.io/badge/docs-online-blue.svg)](https://JuliaDynamics.github.io/PredefinedDynamicalSystems.jl/dev)
44
[![CI](https://github.com/JuliaDynamics/PredefinedDynamicalSystems.jl/workflows/CI/badge.svg)](https://github.com/JuliaDynamics/PredefinedDynamicalSystems.jl/actions?query=workflow%3ACI)
55
[![Package Downloads](https://shields.io/endpoint?url=https://pkgs.genieframework.com/api/v1/badge/PredefinedDynamicalSystems)](https://pkgs.genieframework.com?packages=PredefinedDynamicalSystems)
66

docs/make.jl

Lines changed: 7 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,13 @@
11
cd(@__DIR__)
2+
using PredefinedDynamicalSystems
3+
4+
pages = ["index.md"]
25

36
import Downloads
47
Downloads.download(
5-
"https://raw.githubusercontent.com/JuliaDynamics/doctheme/master/apply_style.jl",
6-
joinpath(@__DIR__, "apply_style.jl")
7-
)
8-
include("apply_style.jl")
9-
10-
using PredefinedDynamicalSystems
11-
12-
makedocs(
13-
modules = [PredefinedDynamicalSystems],
14-
format = Documenter.HTML(
15-
prettyurls = CI,
16-
assets = [
17-
asset("https://fonts.googleapis.com/css?family=Montserrat|Source+Code+Pro&display=swap", class=:css),
18-
],
19-
collapselevel = 3,
20-
),
21-
sitename = "PredefinedDynamicalSystems.jl",
22-
authors = "George Datseris",
23-
pages = ["index.md"],
24-
doctest = false,
25-
draft = false,
8+
"https://raw.githubusercontent.com/JuliaDynamics/doctheme/master/build_docs_with_style.jl",
9+
joinpath(@__DIR__, "build_docs_with_style.jl")
2610
)
11+
include("build_docs_with_style.jl")
2712

28-
if CI
29-
deploydocs(
30-
repo = "github.com/JuliaDynamics/PredefinedDynamicalSystems.jl.git",
31-
target = "build",
32-
push_preview = true
33-
)
34-
end
13+
build_docs_with_style(pages, PredefinedDynamicalSystems)

0 commit comments

Comments
 (0)