Re: [PHP-WEBMASTER] [web-php] master: Fix more XML
On 21.08.2024 at 20:32, Jim Winstead wrote: > Maybe we should have a CI check to avoid invalid XML from getting merged. > > All it would take is running something like: > > for a in $(find . -name '*.xml'); do xmllint --quiet --noout $a; done That sounds like a very good idea! Could you please p
Re: [PHP-WEBMASTER] [web-php] master: Fix more XML
Maybe we should have a CI check to avoid invalid XML from getting merged. All it would take is running something like: for a in $(find . -name '*.xml'); do xmllint --quiet --noout $a; done Jim