more structure for docs
This commit is contained in:
parent
7e4cb63967
commit
5d3ff70f96
|
@ -3,3 +3,4 @@
|
||||||
*.jl.mem
|
*.jl.mem
|
||||||
docs/build/
|
docs/build/
|
||||||
docs/site/
|
docs/site/
|
||||||
|
docs/flux.css
|
||||||
|
|
|
@ -8,7 +8,11 @@ makedocs(modules=[Flux],
|
||||||
assets = ["../flux.css"],
|
assets = ["../flux.css"],
|
||||||
pages = ["Home" => "index.md",
|
pages = ["Home" => "index.md",
|
||||||
"Getting Started" => [
|
"Getting Started" => [
|
||||||
"Basics" => "basics.md"]])
|
"Basics" => "manual/basics.md",
|
||||||
|
"Custom Layers" => "manual/custom.md",
|
||||||
|
"Recurrence" => "manual/recurrent.md",
|
||||||
|
"Debugging" => "manual/debugging.md"],
|
||||||
|
"Contributing & Help" => "contributing.md"])
|
||||||
|
|
||||||
deploydocs(
|
deploydocs(
|
||||||
repo = "github.com/MikeInnes/Flux.jl.git",
|
repo = "github.com/MikeInnes/Flux.jl.git",
|
||||||
|
|
|
@ -1,3 +0,0 @@
|
||||||
# Basic Usage
|
|
||||||
|
|
||||||
## *Charging Ion Capacitors*
|
|
|
@ -0,0 +1,3 @@
|
||||||
|
# Contributing
|
||||||
|
|
||||||
|
[WIP]
|
|
@ -0,0 +1,3 @@
|
||||||
|
# Basic Usage
|
||||||
|
|
||||||
|
*Charging Ion Capacitors*
|
|
@ -0,0 +1,3 @@
|
||||||
|
# Custom Layers
|
||||||
|
|
||||||
|
[WIP]
|
|
@ -0,0 +1,3 @@
|
||||||
|
# Debugging Models
|
||||||
|
|
||||||
|
[WIP]
|
|
@ -0,0 +1,3 @@
|
||||||
|
# Recurrent Models
|
||||||
|
|
||||||
|
[WIP]
|
Loading…
Reference in New Issue