We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38b2b04 commit 3ee8d58Copy full SHA for 3ee8d58
lib/index.d.ts
@@ -24,6 +24,20 @@ declare namespace render {
24
* @default true
25
*/
26
quoteAllAttributes: boolean;
27
+
28
+ /**
29
+ * Quote style
30
+ *
31
+ * 0 - Smart quotes
32
+ * <img src="https://example.com/example.png" onload='testFunc("test")'>
33
+ * 1 - Single quotes
34
+ * <img src='https://example.com/example.png' onload='testFunc("test")'>
35
+ * 2 - double quotes
36
+ * <img src="https://example.com/example.png" onload="testFunc("test")">
37
38
+ * @default 2
39
+ */
40
+ quoteStyle: 0 | 1 | 2
41
};
42
43
// PostHTML Tree
0 commit comments