doc tweaks
This commit is contained in:
parent
fa3b18a41c
commit
1d31e6f04b
|
@ -13,5 +13,6 @@ script:
|
||||||
- julia -e 'Pkg.clone("https://github.com/MikeInnes/DataFlow.jl")'
|
- julia -e 'Pkg.clone("https://github.com/MikeInnes/DataFlow.jl")'
|
||||||
- julia -e 'Pkg.clone(pwd()); Pkg.build("Flux"); Pkg.test("Flux"; coverage=true)'
|
- julia -e 'Pkg.clone(pwd()); Pkg.build("Flux"); Pkg.test("Flux"; coverage=true)'
|
||||||
after_success:
|
after_success:
|
||||||
- julia -e 'Pkg.add("Documenter")'
|
# - julia -e 'Pkg.add("Documenter")'
|
||||||
|
- julia -e 'Pkg.clone("https://github.com/MikeInnes/Documenter.jl")'
|
||||||
- julia -e 'cd(Pkg.dir("Flux")); include(joinpath("docs", "make.jl"))'
|
- julia -e 'cd(Pkg.dir("Flux")); include(joinpath("docs", "make.jl"))'
|
||||||
|
|
|
@ -1,10 +1,11 @@
|
||||||
using Documenter, Flux
|
using Documenter, Flux
|
||||||
|
|
||||||
makedocs(modules=Module[Flux],
|
makedocs(modules=[Flux],
|
||||||
doctest=false, clean=false,
|
doctest = false, clean = false,
|
||||||
format = :html,
|
format = :html,
|
||||||
analytics = "UA-36890222-9",
|
analytics = "UA-36890222-9",
|
||||||
sitename="Flux",
|
sitename = "Flux",
|
||||||
|
assets = ["flux.css"],
|
||||||
pages = [
|
pages = [
|
||||||
"Home" => "index.md",
|
"Home" => "index.md",
|
||||||
"Getting Started" => [
|
"Getting Started" => [
|
||||||
|
|
Loading…
Reference in New Issue