Skip to content

Commit 98e47a9

Browse files
committed
docs stuff
1 parent 8b01863 commit 98e47a9

File tree

4 files changed

+27
-0
lines changed

4 files changed

+27
-0
lines changed

docs/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
build/
2+
site/

docs/Project.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[deps]
2+
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"

docs/make.jl

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
using Documenter
2+
using SymbolicNumericIntegration
3+
4+
makedocs(
5+
sitename="SymbolicNumericIntegration",
6+
format=Documenter.HTML(),
7+
modules=[SymbolicNumericIntegration]
8+
)
9+
10+
# Documenter can also automatically deploy documentation to gh-pages.
11+
# See "Hosting Documentation" and deploydocs() in the Documenter manual
12+
# for more information.
13+
deploydocs(
14+
repo="https://github.com/SciML/SymbolicNumericIntegration.jl";
15+
push_preview=true
16+
)

docs/src/index.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# SymbolicNumericIntegration.jl
2+
3+
Documentation for SymbolicNumericIntegration.jl
4+
5+
```@autodocs
6+
Modules = [SymbolicNumericIntegration]
7+
```

0 commit comments

Comments
 (0)