apache / pekko-sbt-paradox

Theme and sbt-paradox settings used by Pekko projects
https://pekko.apache.org/
Apache License 2.0
4 stars 6 forks source link

pekkoParadoxCopyright property should respect new lines #48

Closed pjfanning closed 1 year ago

pjfanning commented 1 year ago

We need to be able to space the copyright statement over multiple lines.

pekkoParadoxCopyright :=
  """© 2011-2022 <a href="https://www.lightbend.com">Lightbend, Inc</a>.
    |Apache Pekko, Pekko, and its feather logo are trademarks of The Apache Software Foundation.""".stripMargin

These 2 lines should appear on 2 separate lines instead of appearing on same line in the generated HTML.

jrudolph commented 1 year ago

This is HTML, so you can use </br> for newlines where needed.

pjfanning commented 1 year ago

Makes sense.