## Version: 3.1.12 <!--- Provide the exact version in which you see the bug. You can run `npm ls prettier-plugin-marko` to see this. --> ### Details Comments in scriplet blocks can be - **duplicated** ```marko $ { foo; // bar baz; } ``` formats to: ```marko $ { foo; // bar } $ { // bar baz; } ``` - **removed** ```marko $ // oh no! ``` formats to: ```marko ``` - **cause adjacent statements to leave JS-land** ```marko $ { // foo bar; // baz } ``` formats to: ```marko $ // foo bar; // baz ```
Version: 3.1.12
Details
Comments in scriplet blocks can be