Reputation: 2976
I am trying to validate a tinymce generated HTML code but it appears W3C only accept url or files as an input. Any suggestion how do I validate tinymce code?
Upvotes: 0
Views: 574
Reputation: 117314
If you like to implement the validation into your application, use your own validator, for example tidy.
This should be much faster than sending data across the world, and easier too, because you dont have to parse the response of the w3c-validator.
Upvotes: 1