summaryrefslogtreecommitdiff
path: root/lib/WebCoso/Maker/XHTML.pm
blob: ea50ec5d324f012441f651ad7dc9ee04e4bc5ea5 (plain)
1
2
3
4
5
6
7
8
# -*- mode: perl6 -*- 
use WebCoso::Maker;
class WebCoso::Maker::XHTML does WebCoso::Maker['du.xml','xhtml'] {
    method process-contents($du) {
        my $stylesheet = $.get-file('du2xhtml.xsl');
        return ("{$du.contents} converted",$stylesheet);
    }
}