summaryrefslogtreecommitdiff
path: root/lib/WebCoso/Maker/XHTML.pm
blob: 47e283221c872c10fbc6005159fc3c284eb74ffd (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.contents})",$stylesheet);
    }
}