0
votes
Which HTML element has the largest number of children of a certain type, for instance tags?
A very brute force solution in Perl, using XML::Twig:
#!/usr/bin/perl
use strict;
use warnings;
use XML::Twig;
my $max=0; # max number of p's
my $path; # path to the element
XM …
0
votes
In what order do templates in an XSLT document execute, and do they match on the source XML or the buffered output?
Templates always match in the source XML. So the order doesn't really matter, unless 2 or more templates match the same node(s). In that case, somewhat counter-intuitively, the rul …
