Re: [PHP-WEBMASTER] [web-php] master: Fix more XML

2024-08-21 Thread Christoph M. Becker
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

2024-08-21 Thread Jim Winstead
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