SquidEpps

Results 2 issues of SquidEpps

Expected (http://jade-lang.com/reference/attributes) ``` jade div#foo(data-bar="foo")&attributes({'data-foo': 'bar'}) ``` But got this: ![screen shot 2015-03-10 at 8 23 35](https://cloud.githubusercontent.com/assets/5869509/6569640/057c8876-c6ff-11e4-924b-c138749d8df4.png) Also, as you can see, the rest of the string is not parsed...

# Example ```js /** * install: * yarn add objection knex */ import knex from 'knex'; import { Model } from 'objection'; Model.knex(knex({ client: 'pg' })); class Foo extends Model...