My use case is adding schema. I have some JSON and want to insert various collection items into the JSON and concatentaiton is difficult.
I have a several ideas:
- Support template literals. Much smoother than having to concatenate everything. Especially when lots of quotes are already at play
- Do it like Webflow where you can click the add variable button directly inside the text at the exact position you want to insert something
- Support something like double brackets without having to concatenate. So typing something like
{{
would pull up the menu to insert vars.
Not a big prio, much less than CMS which is right up there with oxygen itself.Here's the schema for reference:
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "BlogPosting",
"headline": "",
"image": [
""
],
"datePublished": "",
"dateModified": "",
"author": [{
"@type": "Person",
"name": "John Siciliano",
"url": "https://www.linkedin.com/in/johnsicili/"
}]
}
</script>