-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Closed
Labels
Milestone
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 />© Copyright 2018, B'which still hacky anyway!
althonos and beutlich