diff options
author | dakkar <dakkar@thenautilus.net> | 2015-09-05 16:21:29 +0100 |
---|---|---|
committer | dakkar <dakkar@thenautilus.net> | 2015-09-05 16:21:29 +0100 |
commit | 4078424b9105dba16c50087347b3a607cd75d4d1 (patch) | |
tree | bd81983e27be76dcb28254f26c5359be47a8aa8d /lib/WebCoso/Maker/HTML.pm | |
parent | more tests (diff) | |
download | WebCoso-p6-4078424b9105dba16c50087347b3a607cd75d4d1.tar.gz WebCoso-p6-4078424b9105dba16c50087347b3a607cd75d4d1.tar.bz2 WebCoso-p6-4078424b9105dba16c50087347b3a607cd75d4d1.zip |
first maker test
Diffstat (limited to 'lib/WebCoso/Maker/HTML.pm')
-rw-r--r-- | lib/WebCoso/Maker/HTML.pm | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/WebCoso/Maker/HTML.pm b/lib/WebCoso/Maker/HTML.pm new file mode 100644 index 0000000..1003cbc --- /dev/null +++ b/lib/WebCoso/Maker/HTML.pm @@ -0,0 +1,7 @@ +# -*- mode: perl6 -*- +use WebCoso::Maker; +class WebCoso::Maker::HTML does WebCoso::Maker['xhtml','html'] { + method process-contents($xhtml) { + return "{$xhtml} decorated"; + } +} |