Skip to content

Commit

Permalink
Merge pull request #576 from nmsmith/master
Browse files Browse the repository at this point in the history
Added datalist tag to supported HTML tags.
  • Loading branch information
cmontella authored Nov 20, 2016
2 parents ed34814 + 8142863 commit a919225
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/renderer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ var supportedTags = {
"h1": true, "h2": true, "h3": true, "h4": true, "h5": true, "h6": true,
"ol": true, "p": true, "pre": true, "em": true, "img": true, "canvas": true, "script": true, "style": true, "video": true,
"table": true, "tbody": true, "thead": true, "tr": true, "th": true, "td": true,
"form": true, "optgroup": true, "option": true, "select": true, "textarea": true,
"form": true, "optgroup": true, "option": true, "select": true, "textarea": true, "datalist": true,
"title": true, "meta": true, "link": true,
"svg": true, "circle": true, "line": true, "rect": true, "polygon":true, "text": true, "image": true, "defs": true, "pattern": true, "linearGradient": true, "g": true, "path": true
};
Expand Down

0 comments on commit a919225

Please sign in to comment.