Skip to content

Commit 46e5e67

Browse files
authored
Merge pull request #165 from kattni/update-documentation-link
Update CP docs links.
2 parents 43b12b8 + 483ec38 commit 46e5e67

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -357,4 +357,4 @@
357357
# texinfo_no_detailmenu = False
358358

359359
intersphinx_mapping = {'python': ('https://docs.python.org/3', None),
360-
'CircuitPython': ('https://circuitpython.readthedocs.io/en/latest/', None)}
360+
'CircuitPython': ('https://docs.circuitpython.org/en/latest/', None)}

{{ cookiecutter and 'tmp_repo' }}/.github/PULL_REQUEST_TEMPLATE/adafruit_circuitpython_pr.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
Thank you for contributing! Before you submit a pull request, please read the following.
66

7-
Make sure any changes you're submitting are in line with the CircuitPython Design Guide, available here: https://circuitpython.readthedocs.io/en/latest/docs/design_guide.html
7+
Make sure any changes you're submitting are in line with the CircuitPython Design Guide, available here: https://docs.circuitpython.org/en/latest/docs/design_guide.html
88

99
If your changes are to documentation, please verify that the documentation builds locally by following the steps found here: https://adafru.it/build-docs
1010

{{ cookiecutter and 'tmp_repo' }}/README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Introduction
1717
{% if cookiecutter.sphinx_docs | lower in ["yes", "y"] %}
1818
.. image:: https://readthedocs.org/projects/{% if cookiecutter.library_prefix %}{{ cookiecutter.library_prefix | lower | replace("_", "-")}}-{% endif %}circuitpython-{{ cookiecutter.library_name | lower | replace(" ", "-") | replace("_", "-") }}/badge/?version=latest
1919
{%- if cookiecutter.target_bundle == 'Adafruit' %}
20-
:target: https://circuitpython.readthedocs.io/projects/{{ cookiecutter.library_name | lower | replace(" ", "-") }}/en/latest/
20+
:target: https://docs.circuitpython.org/projects/{{ cookiecutter.library_name | lower | replace(" ", "-") }}/en/latest/
2121
{%- else %}
2222
:target: https://circuitpython-{{ cookiecutter.library_name | lower | replace(" ", "-") | replace("_", "-") }}.readthedocs.io/
2323
{%- endif %}

{{ cookiecutter and 'tmp_repo' }}/docs/conf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@
3131
intersphinx_mapping = {
3232
"python": ("https://docs.python.org/3", None),
3333
{%- if cookiecutter.requires_bus_device in ["y", "yes"] -%}
34-
"BusDevice": ("https://circuitpython.readthedocs.io/projects/busdevice/en/latest/", None),
34+
"BusDevice": ("https://docs.circuitpython.org/projects/busdevice/en/latest/", None),
3535
{% endif %}
3636
{%- if cookiecutter.requires_register in ["y", "yes"] -%}
37-
"Register": ("https://circuitpython.readthedocs.io/projects/register/en/latest/", None),
37+
"Register": ("https://docs.circuitpython.org/projects/register/en/latest/", None),
3838
{%- endif %}
39-
"CircuitPython": ("https://circuitpython.readthedocs.io/en/latest/", None),
39+
"CircuitPython": ("https://docs.circuitpython.org/en/latest/", None),
4040
}
4141

4242
# Show the docstring from both the class and its __init__() method.

{{ cookiecutter and 'tmp_repo' }}/docs/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Table of Contents
3838

3939
Download from GitHub <https://github.com/{{ cookiecutter.github_user }}/{% if cookiecutter.library_prefix %}{{ cookiecutter.library_prefix | capitalize}}_{% endif %}CircuitPython_{{ cookiecutter.library_name | replace(" ", "_") }}/releases/latest>
4040
Download Library Bundle <https://circuitpython.org/libraries>
41-
CircuitPython Reference Documentation <https://circuitpython.readthedocs.io>
41+
CircuitPython Reference Documentation <https://docs.circuitpython.org>
4242
CircuitPython Support Forum <https://forums.adafruit.com/viewforum.php?f=60>
4343
Discord Chat <https://adafru.it/discord>
4444
Adafruit Learning System <https://learn.adafruit.com>

0 commit comments

Comments
 (0)