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
Now parse() returns a Result<Vec<Node>, String> instead of Vec<Node> for better error handling.
Fix
In previous version, parse sometimes may return an unexpected result but without any error message. And now any currently known error will be delivered.
Tag string in <script> or <style> cannot be parsed correctly. For example, <script>"<div></div>"</script> would be parsed as a <div> element in the <script> instead of the plain string.