We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When I have the following table and hyperlink in my html code
```html <table> <tr> <td> <a href="http://www.bing.com"> <table> <tbody> <tr> <td> <a href="http://www.bing.com">11111</a> </td> </tr> <tr> <td> <a href="http://www.bing.com">22222</a> </td> </tr> </tbody> </table> </a> </td> </tr> </table> ```
After the owasp processing, the code becomes like this:
``` <table> <tbody> <tr> <td> <a href="http://www.bing.com"> <table> <tbody> <tr> <td> </td> </tr> </tbody> </table> </a> <a href="http://www.bing.com">11111</a> </td> </tr> <tr> <td> <a href="http://www.bing.com">22222</a> </td> </tr> </tbody> </table> ```
The original layout of the table has changed. Is this a bug?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When I have the following table and hyperlink in my html code
After the owasp processing, the code becomes like this:
The original layout of the table has changed. Is this a bug?
The text was updated successfully, but these errors were encountered: