We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 845ef9b commit 049eae5Copy full SHA for 049eae5
1 file changed
public/js/render.js
@@ -16,6 +16,10 @@ var filterXSSOptions = {
16
// escape its value using built-in escapeAttrValue function
17
return name + '="' + filterXSS.escapeAttrValue(value) + '"';
18
}
19
+ // allow ol specify start number
20
+ if (tag === 'ol' && name === 'start') {
21
+ return name + '="' + filterXSS.escapeAttrValue(value) + '"';
22
+ }
23
24
};
25
0 commit comments