You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Use `input` events (not `change`) for all input elements other than `checkbox` and `radio`, and textareas ([#309](https://github.com/sveltejs/svelte/pull/309))
Copy file name to clipboardexpand all lines: src/parse/state/tag.js
+56-18
Original file line number
Diff line number
Diff line change
@@ -21,9 +21,46 @@ const specials = {
21
21
}
22
22
};
23
23
24
+
// based on http://developers.whatwg.org/syntax.html#syntax-tag-omission
25
+
constdisallowedContents={
26
+
li: ['li'],
27
+
dt: ['dt','dd'],
28
+
dd: ['dt','dd'],
29
+
p: 'address article aside blockquote div dl fieldset footer form h1 h2 h3 h4 h5 h6 header hgroup hr main menu nav ol p pre section table ul'.split(' '),
0 commit comments