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
Hello @yegor256, I used the code in the example. Something like this:
public class My {
public void main() {
String xhtml = "";
ValidationResponse response = new ValidatorBuilder().html().validate(xhtml);
assert response.valid();
}
}
The response object returns errors but no explanation about that, when you use the W3C validator online you get something like this:
_Error: Start tag seen without seeing a doctype first. Expected .
From line 1, column 1; to line 1, column 6
When you get the response and it's errors the explanations is always empty. Is there any way to get the message which tell about the problem?
The text was updated successfully, but these errors were encountered: