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
Implement support for the less-than (<) and greater-than (>) entities.
These should be printed as < and >, respectively. For example, if the HTML response was <div>abc<div>,
the show method of your browser should print <div>abc</div> (and not just abc).
Entities allow web pages to include these special characters without the browser interpreting them as tags.
Python
Rust
The text was updated successfully, but these errors were encountered:
- Implement support for the less-than (<) and greater-than (>) entities
- Check escape sign `&` and `;`
- Manage state with Enum value `state`
- Support Python and Rust both
The text was updated successfully, but these errors were encountered: