I'm currently trying to fix loads of validation errors on a website, many of which are meta tags and stylsheet links missing their closing slashes.
It seems that Modx (Evolution 1.0.5) is removing all of the closing slashes when the page is rendered. For example, this is how the line appears in the Chunk:
<link rel="stylesheet" type="text/css" href="[(site_url)]assets/templates/sk/css/main.css" />
When I View Source on the page, it appears like this (minus the spaces at the start and end):
< link rel="stylesheet" type="text/css" href="
http://www.stellankramer.se/assets/templates/sk/css/main.css" >
(The [ code ] tag was not closing correctly for this line, so I had to leave it out, sorry!)
You can view the full site in question here:
http://www.stellankramer.se
I'm not entirely familiar with Modx Evo, and I didn't work on this website at all until now. So I'm even less familiar with how they have it setup. In my searches, I read that there is a way to have Modx automatically remove closing slashes like that to help the document validate for certain doctypes. I wasn't able to find anything like that on the site, but maybe I was looking in the wrong places.
I appreciate any help.