Skip to content

Commit 5918325

Browse files
committed
Added base for documentation
1 parent 7c82dfe commit 5918325

File tree

6 files changed

+27
-1
lines changed

6 files changed

+27
-1
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
*.json
2+
Manifest.toml

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name = "KernelFunctions"
1+
name = "KernelFunctions"
22
uuid = "ec8451be-7e33-11e9-00cf-bbf324bd1392"
33
version = "0.1.0"
44

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: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
using Documenter
2+
using KernelFunctions
3+
4+
makedocs(
5+
sitename = "KernelFunctions",
6+
format = Documenter.HTML(),
7+
modules = [KernelFunctions]
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 = "<repository url>"
15+
)=#

docs/src/index.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# KernelFunctions.jl
2+
3+
Documentation for KernelFunctions.jl
4+
5+
*** In Construction ***

0 commit comments

Comments
 (0)