[Fixed] Latest Aurelia blog has some broken escaping format

Core team, FYI, some broken escaping format for string interpolating examples.

There are more in the article than this screenshot.


https://aurelia.io/blog/2018/06/24/aurelia-release-notes-june-2018

3 Likes

I thought they were broken, but it is actually not ? Can you point it out ?

Suppose to be

`Hello, ${firstName} ${lastName}!` vs. 'Hello, ' + firstName + ' ' + lastName + '!'
1 Like

I can guess Aurelia view templating engine processed the above text content, which replaced (evaluated) ${firstName} with empty string.

1 Like