[w3c/webcomponents] [templates] How to handle expressions in tables (#703)

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