Rendering in <style> tags causes extra line breaks
Open
glimmervm
- Dominant language
- TypeScript
- Stars
- 22.6k
- Forks
- 4.2k
- Avg merge
- 3d 12h
- Merged PRs (30d)
- 15
Description
Code
```hbs
{{#if this.shadow}}
{{#in-element this.shadow}}
{{#unless @omitStyles}}
@import '{{this.vendor}}';
@import '{{this.app}}';
{{/unless}}
{{yield}}
{{/in-element}}
{{/if}}
```
Output (just the style part)

Expected:
```html
@import '/assets/vendor.css';
@import '/assets/limber.css';
```
Contributor guide
Assessment
This issue has not been assessed yet.