Skip to content

Commit

Permalink
add bedspace analysis
Browse files Browse the repository at this point in the history
  • Loading branch information
nsheff committed Feb 20, 2024
1 parent 65091e6 commit 2a2d736
Show file tree
Hide file tree
Showing 8 changed files with 47,061 additions and 220 deletions.
2 changes: 1 addition & 1 deletion autodoc.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@
bn, _ = os.path.splitext(os.path.basename(nb))
out = f"docs/{item['out']}/{bn}.md"
print(f"Converting '{nb}' to '{out}'")
md_result = nbconvert.exporters.export(nbconvert.MarkdownExporter(), nb)[0]
md_result = nbconvert.exporters.export(nbconvert.HTMLExporter(), nb)[0]
Path(os.path.dirname(out)).mkdir(parents=True, exist_ok=True)
with open(out, "w") as stream:
stream.write(md_result)
Expand Down
Loading

0 comments on commit 2a2d736

Please sign in to comment.