This repository was archived by the owner on Apr 12, 2024. It is now read-only.
This repository was archived by the owner on Apr 12, 2024. It is now read-only.
Weird example of string interpolation in directives guide #1339
Closed
Description
In the developer guide for directives, the string interpolation example is odd.
<img src="img/{{username}}.jpg">Hello {{username}}!</img>
I would expect:
<img src="img/{{username}}.jpg">
and/or:
<p>Hello {{username}}!</p>