~ubuntu-branches/ubuntu/lucid/w3m/lucid-proposed

« back to all changes in this revision

Viewing changes to w3m-doc/sample/html.wd

  • Committer: Bazaar Package Importer
  • Author(s): Fumitoshi UKAI
  • Date: 2004-04-29 03:28:41 UTC
  • Revision ID: james.westby@ubuntu.com-20040429032841-uo4mu7a813aqrua8
Tags: upstream-0.5.1
ImportĀ upstreamĀ versionĀ 0.5.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
@code
 
2
sub URL {
 
3
  $_[0]->CHECK(qw(url));
 
4
  $_[0]->{url};
 
5
}
 
6
sub LINK {
 
7
  $_[0]->CHECK(qw(url title));
 
8
  "<A HREF=\"$_[0]->{url}\">$_[0]->{title}</A>";
 
9
}
 
10
sub LINK_SEC {
 
11
  $_[0]->CHECK(qw(url section title));
 
12
  "<A HREF=\"$_[0]->{url}\">$_[0]->{section} $_[0]->{title}</A>";
 
13
}
 
14
sub MAILTO {
 
15
  $_[0]->CHECK(qw(address name));
 
16
  "<A HREF=\"mailto:$_[0]->{address}\">$_[0]->{name}</A>";
 
17
}
 
18
@end