Skip to content
Snippets Groups Projects
Commit a60ae7f0 authored by Miroslav Kratochvil's avatar Miroslav Kratochvil :bicyclist:
Browse files

workaround a configuration deficiency in Documenter to revive the edit links

closes #498
parent f0b18a03
No related branches found
No related tags found
No related merge requests found
......@@ -8,6 +8,11 @@ pages_branch = "gh-pages"
github_repo_slug = "LCSB-BioCore/COBREXA.jl"
delete!(ENV, "GITHUB_REPOSITORY")
# Documenter tries to guess the repo slug from git remote URL but that doesn't
# work really well here, this is the only fallback. (See Documenter.jl
# src/Utilities/Utilities.jl, in November 2021 it was around line 500) -mk
ENV["TRAVIS_REPO_SLUG"] = github_repo_slug
# generate notebooks
notebooks_path = joinpath(@__DIR__, "src", "notebooks")
notebooks_basenames = filter(x -> endswith(x, ".jl"), readdir(notebooks_path))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment