I have been poking with Jaxer for a while now molding it to my needs, today I validated the output of my pages and I came to the conclusion that Jaxer is making my output invalid, example:
my input header:
- Code: Select all
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
Get transformed to:
- Code: Select all
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
Without self closing tags.
Same counts for the my doctype:
- Code: Select all
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
get changed to a complete UPPERCASE:
- Code: Select all
<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
Is there some hidden setting I'm missing here? Or am i just screwing something up here.
