Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

More broken links [#14] #219

Merged
merged 2 commits into from
Aug 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion src/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,13 @@
r'https://nextstrain.org/ncov/gisaid/21L/global/6m/2024-01-10',
]
linkcheck_anchors_ignore_for_url = [
# colorbrewer uses pseudo-anchors, ala Github. Converting the `#`
# to `?` loads the same page, but it also appends the query
# string as a pseudo-anchor, so the URL ends up looking very ugly
# and potentially misleading. Let's just ignore the anchor...
r'https://colorbrewer2.org',
# Github uses anchor-looking links for highlighting lines but
# handles the actual resolution with Javascript, so skip anchor
# checks for Github URLs:
r'https?://github.com',
r'https://github.com',
]
2 changes: 1 addition & 1 deletion src/guides/share/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ Nextstrain Community
--------------------

To make supporting this philosophy as easy as possible, we have created a "community builds" functionality, whereby GitHub is used to store the results of your analyses and the results are available for everyone via nextstrain.org.
This is behind the `community builds <https://nextstrain.org/#community>`__ which you can see on the main page.
This is behind the `community builds <https://nextstrain.org/community>`__ which you can see on the Nextstrain site.

See :doc:`community-builds` for more information, including a step-by-step guide on how you can get your datasets up as a community build.

Expand Down
Loading