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

Fix linkcheck #623

Merged
merged 1 commit into from
Jul 11, 2023
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,8 +141,8 @@
'-Nfontname=sans']

linkcheck_ignore = [
# linkcheck has trouble handling RH readme pages
r'https://github.com/metomi/isodatetime.*#.*'
# linkcheck has trouble handling GH anchors
r'https://github.com/.*#.*'
]

nitpick_ignore_regex = [
Expand Down
6 changes: 3 additions & 3 deletions src/hyperlinks.rst.include
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.. This document contains hyperlink references for use throughout the documentation.

.. _Apollo Client: https://www.apollographql.com/docs/react/
.. _Configurable HTTP Proxy: https://github.com/AbdealiJK/configurable-http-proxy
.. _Configurable HTTP Proxy: https://github.com/corridor/configurable-http-proxy
.. _CurveZMQ: http://curvezmq.org/page:read-the-docs
.. _Cylc User Guide: https://cylc.github.io/cylc-doc/latest/html/index.html
.. _Cylc Workflow Design Guide: https://cylc.github.io/cylc-doc/latest/html/workflow-design-guide/index.html
Expand All @@ -13,11 +13,11 @@
.. _FCM User Guide: http://metomi.github.io/fcm/doc/user_guide/
.. _FCM: https://metomi.github.io/fcm/doc/
.. _INI: https://en.wikipedia.org/wiki/INI_file
.. _Jinja2: https://jinja.palletsprojects.com/
.. _Jinja2: https://jinja.palletsprojects.com/en/3.0.x/
.. _Jupyter Hub: https://jupyterhub.readthedocs.io/en/stable/
.. _Jupyter Lab: https://jupyterlab.readthedocs.io/en/stable/getting_started/overview.html
.. _Jupyter Server: https://jupyter-server.readthedocs.io
.. _Protobuf: https://developers.google.com/protocol-buffers/
.. _Protobuf: https://protobuf.dev/
.. _PyGTK: http://www.pygtk.org/
.. _Python Regular Expressions: https://docs.python.org/2/library/re.html#regular-expression-syntax
.. _Python: https://www.python.org/
Expand Down
4 changes: 2 additions & 2 deletions src/user-guide/writing-workflows/jinja2.rst
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ so Jinja2 can appear anywhere in the file.

Embedded Jinja2 code should be reasonably easy to understand for those with
coding experience; but if not, Jinja2 is well documented `here
<https://jinja.palletsprojects.com/>`_.
<Jinja2_>`_.

Uses of Jinja2 in Cylc include:

Expand Down Expand Up @@ -443,7 +443,7 @@ handled using ``namespace`` objects that allow propagating of changes across sco

For detail, see
`Jinja2 Template Designer Documentation - Assignments
<https://jinja.palletsprojects.com/en/2.11.x/templates/#assignments>`_
<https://jinja.palletsprojects.com/en/3.0.x/templates/#assignments>`_


.. _Jinja2RaisingExceptions:
Expand Down
2 changes: 1 addition & 1 deletion src/workflow-design-guide/general-principles.rst
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ Coding Standards
When writing your own task scripts make consistent use of appropriate coding
standards such as:

- `PEP8 for Python <https://www.python.org/dev/peps/pep-0008/>`_
- `PEP8 for Python <https://peps.python.org/pep-0008/>`_
- `Google Shell Style Guide for
Bash <https://google.github.io/styleguide/shell.xml>`_

Expand Down