rstacruz / expug

Pug templates for Elixir
http://hexdocs.pm/expug
82 stars 3 forks source link

Newline with dot in attributes #5

Closed rstacruz closed 8 years ago

rstacruz commented 8 years ago

This parses improperly:

li

  img(src=x.x)

But this is OK without the extra newline:

li
  img(src=x.x)

It's also ok without the dot:

li

  img(src=xx)
rstacruz commented 8 years ago

Pending test case: 3e63bf7

rstacruz commented 8 years ago

Fixed in 0.7.3.