Skip to content

Multi-line copyright notice #4925

@ghost

Description

Problem

  • Sphinx cannot generate multi-line copyright notice in the HTML output

How to reproduce

Assuming we want to display:
©️ Copyright 2017, A
©️ Copyright 2018, B

It seems impossible to display these lines under each other. The best behavior can be achieved using:

copyright = u'2017, A, \xA9 Copyright 2018, B'

which outputs: ©️ Copyright 2017, A, ©️ Copyright 2018, B
but this is hacky and still renders in the same line!

Expected behaviour

Either to allow copyright variable being a list:

copyright = [u'2017, A', u'2018, B']

which should generate the two lines properly

Or at least to allow HTML embedding:

copyright = u'2017, A<br />&copy; Copyright 2018, B'

which still hacky anyway!

Metadata

Metadata

Assignees

No one assigned

    Projects

    No projects

    Milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions