Validating Netbeans HTML does not like my thymeleaf namespace.
Here is my Thymleaf HTML file :
<!DOCTYPE html> <html xmlns:th="http://www.thymeleaf.org"> <head th:fragment="head"> <object th:include="fragments/meta :: meta" th:remove="tag" /> <link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700|Open+Sans:300italic,400,300,700' rel='stylesheet' type='text/css'/> <link href="/../../../webjars/Semantic-UI/2.0.6/semantic.min.css" rel="stylesheet" th:href="@{/webjars/Semantic-UI/2.0.6/semantic.min.css}"/> <link href="../../../css/core.css" rel="stylesheet" th:href="@{/css/core.css}" /> <link href="../../../css/product.css" rel="stylesheet" th:href="@{/css/product.css}" /> </head> <body> </body> </html>
This is the error displayed in Netbeans:

How can I get Netbeans to play well with Thymeleaf?
source share