Skip to content

Commit

Permalink
adding docs to dev
Browse files Browse the repository at this point in the history
  • Loading branch information
jlchan committed Jan 11, 2021
1 parent f288b8b commit 6243fd5
Show file tree
Hide file tree
Showing 5 changed files with 43 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,5 @@
.DS_Store
/dev/
Manifest.toml
docs/Manifest.toml
docs/build
8 changes: 8 additions & 0 deletions docs/Project.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[deps]
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
DocumenterTools = "35a29f4d-8980-5a13-9543-d66fff28ecb8"
StartUpDG = "472ebc20-7c99-4d4b-9470-8fde4e9faa0f"

[compat]
Documenter = "0.25"
DocumenterTools = "0.1"
16 changes: 16 additions & 0 deletions docs/make.jl
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
using Documenter
using StartUpDG

makedocs(
sitename = "StartUpDG.jl",
repo = "https://github.com/jlchan/StartUpDG.jl",
modules=[StartUpDG],
pages = [
"Home" => "index.md",
"Authors" => "authors.md"
]
)

deploydocs(
repo = "github.com/jlchan/StartUpDG.jl",
)
3 changes: 3 additions & 0 deletions docs/src/authors.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
## Authors

The original port from Matlab to Julia was done by [Yimin Lin](https://github.com/yiminllin). Subsequent development was done by [Jesse Chan](https://jlchan.github.io).
14 changes: 14 additions & 0 deletions docs/src/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# StartUpDG

Todo: finish

## Index

```@index
```

## Functions

```@autodocs
Modules = [StartUpDG]
```

0 comments on commit 6243fd5

Please sign in to comment.