- From: Romain Menke via GitHub <sysbot+gh@w3.org>
- Date: Wed, 31 Aug 2022 06:23:33 +0000
- To: public-design-tokens-log@w3.org
romainmenke has just created a new issue for https://github.com/design-tokens/community-group:
== Escape sequences are not defined ==
There is no definition in the spec to handle cases like these (but there will be more)
`{}` in token value :
```json
{
"button-content": {
"$value": "{ click }"
}
}
```
Intended to result in this :
```css
button::before {
content: "{ click }";
}
```
----
Defining how to escape and unescape characters can also enable `.` in token names.
This can be escaped in a token file but shown unescaped to users in design tools.
Please view or discuss this issue at https://github.com/design-tokens/community-group/issues/167 using your GitHub account
--
Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config
Received on Wednesday, 31 August 2022 06:23:34 UTC