Skip to content

Support sequence of copyright statements #224

@momostein

Description

@momostein

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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions