Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ch1: Implement support for the less-than (<) and greater-than (>) entities #15

Open
2 tasks
corona10 opened this issue Apr 21, 2021 · 0 comments
Open
2 tasks
Labels
exercise Exercises

Comments

@corona10
Copy link
Contributor

corona10 commented Apr 21, 2021

Implement support for the less-than (<) and greater-than (>) entities. 
These should be printed as < and >, respectively. For example, if the HTML response was &lt;div&gt;abc&lt;div&gt;, 
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
@corona10 corona10 added the exercise Exercises label Apr 21, 2021
Writtic added a commit to Writtic/browser-engineering that referenced this issue May 29, 2021
- Implement support for the less-than (&lt;) and greater-than (&gt;) entities
  - Check escape sign `&` and `;`
  - Manage state with Enum value `state`
- Support Python and Rust both
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
exercise Exercises
Projects
None yet
Development

No branches or pull requests

1 participant