Skip to content

Commit 297bce3

Browse files
authored
Fix Kenney.nl links in permissive licensing page (#2567)
* Fix Kenney.nl links in permissive licensing page * Use Kenney.nl instead of Kenney_nl for ref name * Fix typo (s/Kenny/Kenney/ on resources page) * Update the permissive licensing page and resource listing page for consistency * Use links.rst CC0 ref declaration in resource listing * s/by Kenney.nl/from Kenney.nl/ permissive licensing page
1 parent a8ced82 commit 297bce3

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

doc/_includes/links.rst

+2-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@
2424
.. Arcade-related community engagement stuff
2525
.. _PyWeek: https://pyweek.org/
2626
.. _The Python Discord: https://www.pythondiscord.com/
27-
.. _Kenney_nl: https://kenney.nl/
27+
.. Sphinx does not like the _ if we write Kenney_nl.
28+
.. _Kenney.nl: https://kenney.nl/
2829

2930
.. Concepts
3031
.. _CC0: https://creativecommons.org/publicdomain/#publicdomain-cc0-10

doc/about/permissive_licensing.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ If something requires special handling, we'll warn you about it.
9191
Where are all these assets from?
9292
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
9393

94-
Mostly from `Kenney.nl <Kenney_nl>`_. Kenny is famous for creating a repository of free, high-quality
94+
Mostly from `Kenney.nl`_. Kenney is famous for creating a repository of free, high-quality
9595
`CC0`_ (public domain) game assets. His work is funded by donations and
9696
`Kenney's Patreon <https://www.patreon.com/kenney>`_.
9797

@@ -102,7 +102,7 @@ It's the lawyer version saying the following:
102102

103103
<blockquote><i>"I give permission to everyone to use this for whatever. Go make something cool!"</i></blockquote>
104104

105-
Although Arcade includes a few bundled assets which aren't from `Kenny.nl <Kenney_nl>`_, we've made sure
105+
Although Arcade includes a few bundled assets which aren't from `Kenney.nl`_, we've made sure
106106
they're released under a similar license.
107107

108108

util/create_resources_listing.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -802,9 +802,8 @@ def resources():
802802
out.write("That's a good question and one you should always ask when searching for assets online.\n"
803803
"To help users get started quickly, the Arcade team makes sure to only bundle assets which\n"
804804
# pending: post-3.0 cleanup # Why does it refuse to accept external links definitions? Who knows?
805-
"are specifically released under `CC0 <https://creativecommons.org/publicdomain/#publicdomain-cc0-10>`_"
806-
" or similar terms.\n")
807-
out.write("Most are from `Kenney.nl <https://kenney.nl/>`_.\n") # pending: post-3.0 cleanup.
805+
"are specifically released under `CC0`_ or similar terms.\n")
806+
out.write("Most are from `Kenney.nl`_.\n") # pending: post-3.0 cleanup.
808807
logo = html.escape("'logo.png'")
809808
do_heading(out, 1, "How do I use these?")
810809
out.write(

0 commit comments

Comments
 (0)