forked from sveltejs/svelte
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix perserveComments on ssr (sveltejs#4730)
- Loading branch information
Showing
2 changed files
with
6 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,8 @@ | ||
import Renderer, { RenderOptions } from '../Renderer'; | ||
import Comment from '../../nodes/Comment'; | ||
|
||
export default function(_node: Comment, _renderer: Renderer, _options: RenderOptions) { | ||
// TODO preserve comments | ||
|
||
// if (options.preserveComments) { | ||
// renderer.append(`<!--${node.data}-->`); | ||
// } | ||
export default function(node: Comment, renderer: Renderer, options: RenderOptions) { | ||
if (options.preserveComments) { | ||
renderer.add_string(`<!--${node.data}-->`); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters