OSDN Git Service

columnプラグインのCSSを修正。
[fswiki/sandbox.git] / takezoe / plugin / book / Br.pm
1 package plugin::book::Br;
2 #==============================================================================
3 # ¥³¥ó¥¹¥È¥é¥¯¥¿
4 #==============================================================================
5 sub new {
6         my $class = shift;
7         my $self = {};
8         return bless $self,$class;
9 }
10
11 #==============================================================================
12 # ¥¤¥ó¥é¥¤¥ó¥á¥½¥Ã¥É
13 #==============================================================================
14 sub inline {
15         return "<br>";
16 }
17
18 1;