- or download this
my $abbreviation = abbr( name => "Jane Q. Public", );
- or download this
my $abbreviation = abbr(
name => "Jane Q. Public",
periods => "yes",
);
- or download this
my $abbreviation = abbr(
name => "The International House of Pancakes",
ALLCAPS => "yes",
);
- or download this
my $abbreviation = abbr(
name => "frequently asked question",
ALLCAPs => "yes",
HTML => "yes",
);
- or download this
<abbr title="frequently asked question">FAQ</abbr>
- or download this
sub abbr {
my %opt = @_;
...
return $initials;
}