[w3c/webcomponents] [proposals]: Template Instantiation typo? (#690)

Source: [Template Instantiation Proposal](https://github.com/w3c/webcomponents/blob/gh-pages/proposals/Template-Instantiation.md)
@rniwa for the following examples

```
// Template content is '`<section><h1>{{name}}</h1>Email: <a href="mailto:{{email}}">{{email}}</a></section>'`
shadowRoot.appendChild(template.createInstance({name: "Ryosuke Niwa", email: "[rniwa@webkit.org](mailto:rniwa@webkit.org)"}));
```
and 
```
let content = template.createInstance({name: "Ryosuke Niwa", email: "[rniwa@webkit.org](mailto:rniwa@webkit.org)"});
shadowRoot.appendChild(content);
...
content.update({email: "[rniwa@apple.com](mailto:rniwa@apple.com)"});
```
the use of `"[rniwa@webkit.org](mailto:rniwa@webkit.org)"` here seems like some markdown was inadvertently introduced.  I do not see any other examples of this value in other examples.


-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/w3c/webcomponents/issues/690

Received on Thursday, 2 November 2017 15:17:54 UTC