--- source: crates/rome_formatter_test/src/snapshot_builder.rs info: test_file: js/multiparser-html/issue-10691.js --- # Input ```js export default function include_photoswipe( gallery_selector = ".my-gallery" ) { return /* HTML */ ` `; } ``` # Prettier differences ```diff --- Prettier +++ Rome @@ -1,7 +1,8 @@ export default function include_photoswipe(gallery_selector = ".my-gallery") { - return /* HTML */ ` `; + return /* HTML */ ` + `; } ``` # Output ```js export default function include_photoswipe(gallery_selector = ".my-gallery") { return /* HTML */ ` `; } ```