<!-- Mix HTML with JavaScript expressions, similar to JSX: -->
<ul>
{myFavoritePokemon.map((data) => <li>{data.name}</li>)}
</ul>
As you can see, this isn't supported yet by this plugin. Can we add this feature? I'm new to treesitter development but I'm happy to help if I'm given some resources or direction on how to do this.
The Astro component template supports JSX-like syntax for JavaScript expressions.
As you can see, this isn't supported yet by this plugin. Can we add this feature? I'm new to treesitter development but I'm happy to help if I'm given some resources or direction on how to do this.