FlatLang / Flat

(Deprecated) Soon-to-be legacy Flat compiler all in one
6 stars 0 forks source link

Multiline string in external interpolation not preserving whitespace correctly #434

Open BSteffaniak opened 2 years ago

BSteffaniak commented 2 years ago
#{
  log.debug("|
    Finished handling request:
      method: #{method}
      path: #{path}
    |")
}

should produce:

Finished handling request:
  method: get
  path: /badges.svg

but currently, it actually produces:

Finished handling request:
method: get
path: /badges.svg