Re: [WICG/webcomponents] Spring 2023 DOM Parts F2F (Issue #999)

@tbondwilkinson I've started to write a template engine, and I decided to use this format:
1. `${}`, which is familiar format in JS, and can be used everywhere 
```html <template>Hello, ${ name }</template>
```
2. $[], for partial templates
```html
$[ extends "base.html" ]
$[ header ]
$[ content ]

<template id="header">
  <h1>${ title }</h1>
</template>
```

-- 
Reply to this email directly or view it on GitHub:
https://github.com/WICG/webcomponents/issues/999#issuecomment-1612914439
You are receiving this because you are subscribed to this thread.

Message ID: <WICG/webcomponents/issues/999/1612914439@github.com>

Received on Thursday, 29 June 2023 11:10:02 UTC