- From: Daniel Gidman <notifications@github.com>
- Date: Thu, 02 Nov 2017 15:17:29 +0000 (UTC)
- To: w3c/webcomponents <webcomponents@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Thursday, 2 November 2017 15:17:54 UTC
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