Multiline string in slim

Viewed 2092

I want to have a string of multiple lines in a slim template, like this:

style
  |  .card {
  |    height: 100px;
  |    text-align: center;
  |  }

Currently this works but it means I have to put | at the start of every line, which is really annoying.

Is there any way to have a multiline string in slim?

1 Answers
Related