Skip to content

Commit 85b3bd1

Browse files
committed
fix link to docs
1 parent b405060 commit 85b3bd1

File tree

4 files changed

+1107
-8
lines changed

4 files changed

+1107
-8
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# bigwig for nim
22

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)
44

55
## Command Line
66

bigwig.nimble

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,8 @@ task test, "run the tests":
3333

3434
task docs, "Builds documentation":
3535
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
4240

docs/bigwig.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -882,7 +882,7 @@ <h1><a class="toc-backref" href="#19">Exports</a></h1>
882882
<div class="twelve-columns footer">
883883
<span class="nim-sprite"></span>
884884
<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>
886886
</div>
887887
</div>
888888
</div>

0 commit comments

Comments
 (0)