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(pwd()); Pkg.build("Flux"); Pkg.test("Flux"; coverage=true)'
|
||||
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"))'
|
||||
|
|
|
@ -1,10 +1,11 @@
|
|||
using Documenter, Flux
|
||||
|
||||
makedocs(modules=Module[Flux],
|
||||
doctest=false, clean=false,
|
||||
makedocs(modules=[Flux],
|
||||
doctest = false, clean = false,
|
||||
format = :html,
|
||||
analytics = "UA-36890222-9",
|
||||
sitename="Flux",
|
||||
sitename = "Flux",
|
||||
assets = ["flux.css"],
|
||||
pages = [
|
||||
"Home" => "index.md",
|
||||
"Getting Started" => [
|
||||
|
|
Loading…
Reference in New Issue