You will implement an extended version of the balanced parentheses algorithm that checks whether html tags are balanced. (See chapter 4.7 of the book for details on the balanced parentheses algorithm.)
Learning Objectives:
- implement the balanced parenthesis algorithm
- practice using HTML
- practice using stacks
- practice using pytest and test driven development
HTML is how webpages format their content. A simple example is the following code:
Data structures is <strong>the best</strong>!
Which results in text that looks like: Data structures is the best!
The text between angle brackets is called a tag,
and tags always come in pairs.
The first tag (<strong>
) is called an opening tag and the second tag (</strong>
) is called a closing tag.
Closing tags always have the same text as an opening tag, except that a slash /
is added at the very beginning.
There are many html tags that control different formatting options,
and they get combined in complex ways to generate the layout of webpages.
For example, the <em>
tag causes text to be italicized and the <u>
tag causes text to be underlined.
The HTML:
<u>Data structures</u> is <strong>the <em>best</em></strong>!
results in text that looks like: Data structures is the best!
Large webpages have tens of thousands of html tags in a single file, and it is important to verify that this html is correct. Examples of incorrect html are:
<strong>example
(there is no closing</strong>
tag)<strong>python <u>is </strong> awesome </u>
(the</strong>
closing tag needs to be outside of the</u>
tag)
The goal of this assignment is to write a program which can detect these HTML errors.
Real World Application: The World Wide Web Consortium (W3C) is the organization responsible for maintaining the HTML standard. They have a program online at https://validator.w3.org/ which performs HTML validation, and it is used by web developers around the world to improve their webpages. You are implementing a limited version of this program.
Complete the following tasks:
- Fork the html_validator repo and enable github actions
- Update the
README.md
file so that the test case badges point to your forked repo - Implement the
validate_html
and_extract_tags
functions so that all test cases intests/test_main.py
pass
The function of many HTML tags can be modified by specifying attributes within the opening tag. For example:
This is a hyperlink to <a href="https://izbicki.me">my webpage</a>.
The a
tag creates a hyperlink, and the href
attribute specifies where the link goes.
Notice that the href
attribute appears only in the opening tag and not in the closing tag.
The file tests/test_ec.py
contains test cases for HTML that includes attributes.
If your code successfully passes all of these test cases, then you will get 1 point of extra credit on the assignment.
You must pass all of the test cases and get the green extra credit badge in order to get this point.
HINT:
You do not need to modify the validate_html
function at all.
Instead, just modify the _extract_tags
function so that it ignores any attributes present in the opening tag.