Skip to content

Latest commit

 

History

History
46 lines (24 loc) · 1020 Bytes

README.md

File metadata and controls

46 lines (24 loc) · 1020 Bytes

NAME

Text::Hatena - The new "Text-to-HTML converter" with Hatena syntax.

SYNOPSIS

use Text::Hatena;

my $parser = Text::Hatena->new;
my $html = $parser->parse($string);

# Text::Hatena 0.16 style
my $html = $parser->html;

# Text::Hatena 0.20 style
my $html = Text::Hatena->parse($string);

# Text::Xatena style
my $html = $parser->format($string);

DESCRIPTION

Text::Hatena is a text-to-html converter.

SYNTAX

AUTHOR

["cho45 [email protected]"](#cho45 [email protected])

["onishi [email protected]"](#onishi [email protected])

SEE ALSO

Text::Xatena

http://hatenadiary.g.hatena.ne.jp/keyword/%E3%81%AF%E3%81%A6%E3%81%AA%E8%A8%98%E6%B3%95%E4%B8%80%E8%A6%A7

LICENSE

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.