-
-
Notifications
You must be signed in to change notification settings - Fork 188
Open
Labels
Description
According to the Sphinx documentation, Sphinx supports a sequence of strings for the copyright or project_copyright configuration values.
Right now, if you use a sequence of multiple copyright values:
copyright = [
"2022, Jane Doe",
"2024, Alice Bobson",
]Expected
This should result in two different copyright notices on two lines:
© Copyright 2022, Jane Doe
© Copyright 2024, Alice Bobson
Actual
Instead, the list is converted to a string and displayed as a single copyright notice:
© Copyright ['2022, Jane Doe', '2024, Alice Bobson']
The classic sphinx theme still does this correctly.