File tree Expand file tree Collapse file tree 3 files changed +18
-15
lines changed Expand file tree Collapse file tree 3 files changed +18
-15
lines changed Original file line number Diff line number Diff line change @@ -21,13 +21,8 @@ before_script:
21
21
- sleep 5
22
22
after_success :
23
23
- julia -e 'cd(Pkg.dir("RobotOS")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
24
- - echo $TRAVIS_JULIA_VERSION
25
- - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
26
- - julia -e 'run(`lualatex -v`)'
27
- - julia -e 'Pkg.clone(pwd())'
28
- - julia -e 'Pkg.add("RobotOS.jl")'
29
24
- julia -e 'Pkg.add("Documenter");'
30
- - julia -e 'cd(Pkg.dir("RobotOSDocs "));ENV["DOCUMENTER_DEBUG"]=true; include(joinpath("docs", "make.jl"))'
25
+ - julia -e 'cd(Pkg.dir("RobotOS ")); ENV["DOCUMENTER_DEBUG"]=" true" ; include(joinpath("docs", "make.jl"))'
31
26
after_script :
32
27
- killall roscore
33
28
- killall python
Original file line number Diff line number Diff line change 1
1
using Documenter,RobotOS
2
- makedocs (modules= [RobotOS],
3
- doctest= false , clean= true ,
4
- format = :html ,
5
- authors= " Josh Langsfeld" ,
6
- sitename= " RobotOS.jl" ,
7
- pages = Any[
2
+
3
+ makedocs (
4
+ modules= [RobotOS],
5
+ doctest= false , clean= true ,
6
+ format = :html ,
7
+ authors= " Josh Langsfeld" ,
8
+ sitename= " RobotOS.jl" ,
9
+ pages = Any[
8
10
" Home" => " index.md"
9
- ]
10
- )
11
+ " API Reference" => " api.md"
12
+ ]
13
+ )
11
14
12
15
deploydocs (
13
16
deps= Deps. pip (" mkdocs" ," python-markdown-math" ),
@@ -17,4 +20,4 @@ deploydocs(
17
20
target= " build" ,
18
21
osname= " linux" ,
19
22
julia= " 0.6" ,
20
- make = nothing )
23
+ )
Original file line number Diff line number Diff line change
1
+ # API Reference
2
+
3
+ ``` @autodocs
4
+ Modules = [RobotOS]
5
+ ```
You can’t perform that action at this time.
0 commit comments