- From: Justin Fagnani <notifications@github.com>
- Date: Fri, 10 Nov 2017 18:28:01 +0000 (UTC)
- To: w3c/webcomponents <webcomponents@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Friday, 10 November 2017 18:28:24 UTC
Currently, this won't parse in a way that's useful for dynamically creating tables: ```html <template> <table> {{rows}} </table> </template> ``` because the `{{rows}}` text will be fostered to before the table. A couple of options are: * Offer a fallback syntax that can be parsed inside a table, like `<!--{{rows}}-->` or `<?{{rows}}>` * Change the parsing rules inside `<template>` so that disallowed content is not fostered. -- 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/703
Received on Friday, 10 November 2017 18:28:24 UTC