aurelia / templating-binding

An implementation of the templating engine's Binding Language abstraction which uses a pluggable command syntax.
MIT License
32 stars 26 forks source link

feat(syntax-interpreter): allow single quoted strings in options attributes #84

Closed AshleyGrant closed 8 years ago

AshleyGrant commented 8 years ago

I've added three unit tests, but there will likely need to be more. I used double quotes in the unit tests to attempt to make the test strings more readable.

EisenbergEffect commented 8 years ago

@jdanyow Can you review this and see if this is good for phase 1?

AshleyGrant commented 8 years ago

I made it where, if you do foo="bar: ';\';'" you'll get ';\';' as the value. Let me know if that isn't what needs to be spit out. If it should be ;\'; and not include the quotes.

jdanyow commented 8 years ago

looks good :beers: