mirror of https://github.com/sveltejs/svelte
fix: Allow unquoted slash in attributes (#14615)
* test: add sample for unquoted attributes * fix: handle unquoted slash in attributes * docs: allow unquoted slash in attributes * test: add additional sample for unquoted href attributes * fix: improve handling of self-closing tags with unquoted attributes * Update .changeset/long-boxes-flow.md --------- Co-authored-by: Rich Harris <hello@rich-harris.dev>pull/14689/head
parent
65db409860
commit
88c2d6ea36
@ -0,0 +1,5 @@
|
||||
---
|
||||
'svelte': patch
|
||||
---
|
||||
|
||||
fix: allow unquoted slash in attributes
|
@ -1 +1,3 @@
|
||||
<div class=foo></div>
|
||||
<div class=foo></div>
|
||||
<a href=/>home</a>
|
||||
<a href=/foo>home</a>
|
Loading…
Reference in new issue