Skip to content

Commit 671361a

Browse files
authored
Merge pull request #623 from MetRonnie/links
Fix linkcheck
2 parents 11d8897 + 550ae37 commit 671361a

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

src/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,8 +141,8 @@
141141
'-Nfontname=sans']
142142

143143
linkcheck_ignore = [
144-
# linkcheck has trouble handling RH readme pages
145-
r'https://github.com/metomi/isodatetime.*#.*'
144+
# linkcheck has trouble handling GH anchors
145+
r'https://github.com/.*#.*'
146146
]
147147

148148
nitpick_ignore_regex = [

src/hyperlinks.rst.include

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.. This document contains hyperlink references for use throughout the documentation.
22

33
.. _Apollo Client: https://www.apollographql.com/docs/react/
4-
.. _Configurable HTTP Proxy: https://github.com/AbdealiJK/configurable-http-proxy
4+
.. _Configurable HTTP Proxy: https://github.com/corridor/configurable-http-proxy
55
.. _CurveZMQ: http://curvezmq.org/page:read-the-docs
66
.. _Cylc User Guide: https://cylc.github.io/cylc-doc/latest/html/index.html
77
.. _Cylc Workflow Design Guide: https://cylc.github.io/cylc-doc/latest/html/workflow-design-guide/index.html
@@ -13,11 +13,11 @@
1313
.. _FCM User Guide: http://metomi.github.io/fcm/doc/user_guide/
1414
.. _FCM: https://metomi.github.io/fcm/doc/
1515
.. _INI: https://en.wikipedia.org/wiki/INI_file
16-
.. _Jinja2: https://jinja.palletsprojects.com/
16+
.. _Jinja2: https://jinja.palletsprojects.com/en/3.0.x/
1717
.. _Jupyter Hub: https://jupyterhub.readthedocs.io/en/stable/
1818
.. _Jupyter Lab: https://jupyterlab.readthedocs.io/en/stable/getting_started/overview.html
1919
.. _Jupyter Server: https://jupyter-server.readthedocs.io
20-
.. _Protobuf: https://developers.google.com/protocol-buffers/
20+
.. _Protobuf: https://protobuf.dev/
2121
.. _PyGTK: http://www.pygtk.org/
2222
.. _Python Regular Expressions: https://docs.python.org/2/library/re.html#regular-expression-syntax
2323
.. _Python: https://www.python.org/

src/user-guide/writing-workflows/jinja2.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ so Jinja2 can appear anywhere in the file.
2424

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

2929
Uses of Jinja2 in Cylc include:
3030

@@ -443,7 +443,7 @@ handled using ``namespace`` objects that allow propagating of changes across sco
443443
444444
For detail, see
445445
`Jinja2 Template Designer Documentation - Assignments
446-
<https://jinja.palletsprojects.com/en/2.11.x/templates/#assignments>`_
446+
<https://jinja.palletsprojects.com/en/3.0.x/templates/#assignments>`_
447447

448448

449449
.. _Jinja2RaisingExceptions:

src/workflow-design-guide/general-principles.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ Coding Standards
126126
When writing your own task scripts make consistent use of appropriate coding
127127
standards such as:
128128

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

0 commit comments

Comments
 (0)