Re: [w3c/webcomponents] [templates] If HTML Template Instantiation proposal is adopted, consider a HTML-native syntax (#695)

Wouldn't this have potential impact on future HTML development? Granted, if the tags are semantic enough, usage would be unlikely. Would it make more sense to target a specific element tag like `<directive>` or allow for extra semantics behind `<template>`? I could imagine something like this: 

```html
<ul>
  <template if="{{someConditionToBeEvaluatedAgainst}}" loop="{{youGetTheIdea}}">
    <li>{{someContent}}</li>
  </template>
</ul>
```

This seems more inline with the current implementation of HTML and JavaScript interactions.

-- 
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/695#issuecomment-341744409

Received on Friday, 3 November 2017 15:52:58 UTC