Tidy will accept the following minimal document: ```html <!DOCTYPE html><title></title> ``` The validator at [https://html5.validator.nu/](https://html5.validator.nu/) will accept the same document only if the `<title>` element is not empty: ```html <!DOCTYPE html><title>.</title> ``` Who is correct?