We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 25cb529 commit ce2a2adCopy full SHA for ce2a2ad
5 files changed
docs/make.jl
@@ -32,7 +32,8 @@ nbviwer_logo = "https://img.shields.io/badge/show-nbviewer-579ACA.svg"
32
for (i,(title,filename)) in enumerate(Tutorials.files)
33
# Generate strings
34
tutorial_prefix = string("t",@sprintf "%03d_" i)
35
- tutorial_title = string("# # Tutorial ", i, ": ", title)
+ tutorial_id = replace(filename, " " => "_")
36
+ tutorial_title = string("# # [Tutorial ", i, ": ", title, "](@id ", tutorial_id, ")")
37
tutorial_file = string(tutorial_prefix,splitext(filename)[1])
38
notebook_filename = string(tutorial_file, ".ipynb")
39
binder_url = joinpath("@__BINDER_ROOT_URL__","notebooks", notebook_filename)
0 commit comments