trivago / prettier-plugin-twig-melody

Code formatting plugin for Prettier which can handle Twig/Melody templates
Apache License 2.0
155 stars 35 forks source link

Support for <script> and <style> tags? #71

Closed Epskampie closed 2 years ago

Epskampie commented 3 years ago

Would love to use this, but a lot of our twig files have inline css and/or scripts like so:

<style>
    .foobar { 
        text-align: right;
    }
</style>

<script>
    console.log('hello, world');
</script>

Right now this plugin treats the content as text, concatenating a lot of it. Ideally it would use the default prettier formatters for CSS and js for these parts, but if it would just leave them alone (no change in formatting) that would also be acceptable.

Is anything like this planned?