Open Bug 1305802 Opened 8 years ago

Empty line as first line of multiline entinity value

Categories

(L20n :: JS Library, defect)

defect
Not set
normal

Tracking

(Not tracked)

UNCONFIRMED

People

(Reporter: taras.semenenko, Unassigned)

Details

User Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.116 Safari/537.36

Steps to reproduce:

I looks like you skip first empty lines in the beginning of multiline entities:


`
hello = 
  | line1
  | line2
`

`
hello-empty = 
  | 
  | line2
`

`
hello-space = 
  | <space_symbol>
  | line2
`



Actual results:

"hello" and "hello-space" entities will have two line formatted values:
`
line1
line2
`
and 
`<space_symbol>
line2
`

but "hello-empty" will still have one line only:
`line2`


Expected results:

I would expect to allow keeping first empty lines for multiline entities.
You need to log in before you can comment on or make changes to this bug.