aboutsummaryrefslogtreecommitdiffstats
path: root/w3m-doc/sample/html.wd
diff options
context:
space:
mode:
Diffstat (limited to 'w3m-doc/sample/html.wd')
-rw-r--r--w3m-doc/sample/html.wd18
1 files changed, 0 insertions, 18 deletions
diff --git a/w3m-doc/sample/html.wd b/w3m-doc/sample/html.wd
deleted file mode 100644
index 1b1d7f2..0000000
--- a/w3m-doc/sample/html.wd
+++ /dev/null
@@ -1,18 +0,0 @@
-@code
-sub URL {
- $_[0]->CHECK(qw(url));
- $_[0]->{url};
-}
-sub LINK {
- $_[0]->CHECK(qw(url title));
- "<A HREF=\"$_[0]->{url}\">$_[0]->{title}</A>";
-}
-sub LINK_SEC {
- $_[0]->CHECK(qw(url section title));
- "<A HREF=\"$_[0]->{url}\">$_[0]->{section} $_[0]->{title}</A>";
-}
-sub MAILTO {
- $_[0]->CHECK(qw(address name));
- "<A HREF=\"mailto:$_[0]->{address}\">$_[0]->{name}</A>";
-}
-@end