mirror of https://github.com/sveltejs/svelte
fix: correctly print `!doctype` during `print` (#17341)
parent
01cd35211b
commit
a584ff1347
@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
'svelte': patch
|
||||||
|
---
|
||||||
|
|
||||||
|
fix: correctly print `!doctype` during `print`
|
||||||
@ -0,0 +1,11 @@
|
|||||||
|
<!doctype html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
|
<title>Svelte App</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div>Hello World</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@ -0,0 +1,12 @@
|
|||||||
|
<!doctype html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta
|
||||||
|
name="viewport"
|
||||||
|
content="width=device-width, initial-scale=1.0"
|
||||||
|
/>
|
||||||
|
<title>Svelte App</title>
|
||||||
|
</head>
|
||||||
|
<body><div>Hello World</div></body>
|
||||||
|
</html>
|
||||||
Loading…
Reference in new issue