aboutsummaryrefslogtreecommitdiffstats
path: root/w3m-doc/sample/html.wd
diff options
context:
space:
mode:
authorTatsuya Kinoshita <tats@vega.ocn.ne.jp>2011-05-04 07:18:09 +0000
committerTatsuya Kinoshita <tats@vega.ocn.ne.jp>2011-05-04 07:18:09 +0000
commit5f8e0f8ef9a422691dd72e8a953a42a41478fcb4 (patch)
tree4b2df4796a534793648b3c4fc532fc36bd0cd525 /w3m-doc/sample/html.wd
parentReleasing debian version 0.3-2.4 (diff)
downloadw3m-5f8e0f8ef9a422691dd72e8a953a42a41478fcb4.tar.gz
w3m-5f8e0f8ef9a422691dd72e8a953a42a41478fcb4.zip
Releasing debian version 0.5.1-1debian/0.5.1-1
Diffstat (limited to 'w3m-doc/sample/html.wd')
-rw-r--r--w3m-doc/sample/html.wd18
1 files changed, 18 insertions, 0 deletions
diff --git a/w3m-doc/sample/html.wd b/w3m-doc/sample/html.wd
new file mode 100644
index 0000000..1b1d7f2
--- /dev/null
+++ b/w3m-doc/sample/html.wd
@@ -0,0 +1,18 @@
+@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