File tree Expand file tree Collapse file tree 4 files changed +1107
-8
lines changed Expand file tree Collapse file tree 4 files changed +1107
-8
lines changed Original file line number Diff line number Diff line change 1
1
# bigwig for nim
2
2
3
- [ ![ badge] ( https://img.shields.io/badge/docs-latest-blue.svg )] ( https://brentp.github.io/libbigwig -nim/bigwig .html )
3
+ [ ![ badge] ( https://img.shields.io/badge/docs-latest-blue.svg )] ( https://brentp.github.io/bigwig -nim/lib .html )
4
4
5
5
## Command Line
6
6
Original file line number Diff line number Diff line change @@ -33,10 +33,8 @@ task test, "run the tests":
33
33
34
34
task docs, " Builds documentation" :
35
35
mkDir(" docs" / " bigwig" )
36
- var file = " src/bigwig.nim"
37
- exec " nim doc2 --verbosity:0 --hints:off -o:" & " docs" /../ file.changefileext(" html" ).split(" /" , 1 )[1 ] & " " & file
38
- for file in listfiles(" src/bigwig" ):
39
- if file.endswith(" value.nim" ): continue
40
- if splitfile(file).ext == " .nim" :
41
- exec " nim doc2 --verbosity:0 --hints:off -o:" & " docs" /../ file.changefileext(" html" ).split(" /" , 1 )[1 ] & " " & file
36
+ for file in @ [" src/bigwig.nim" , " src/bigwigpkg/lib.nim" ]:
37
+ var f = file.changefileext(" html" ).split(" /" )
38
+ var fn = f[f.high]
39
+ exec " nim doc2 --verbosity:0 --hints:off -o:" & " docs" /../ fn.changefileext(" html" ) & " " & file
42
40
Original file line number Diff line number Diff line change @@ -882,7 +882,7 @@ <h1><a class="toc-backref" href="#19">Exports</a></h1>
882
882
< div class ="twelve-columns footer ">
883
883
< span class ="nim-sprite "> </ span >
884
884
< br />
885
- < small > Made with Nim. Generated: 2019-08-17 16:39:16 UTC</ small >
885
+ < small > Made with Nim. Generated: 2019-08-17 21:14:55 UTC</ small >
886
886
</ div >
887
887
</ div >
888
888
</ div >
You can’t perform that action at this time.
0 commit comments