website/lib/XQ.rakumod
2025-02-06 18:39:20 -05:00

10 lines
232 B
Raku

#| Interaction with xq
unit module XQ;
#| Format an xml string
sub format-xml(Str:D $input --> Str:D) is export {
my $xq = run <xq>, :out, :in;
# Inject the xml
$xq.in.spurt: $input, :close;
$xq.out.slurp: :close
}