OSDN Git Service

コメントを追記。
[fswiki/sandbox.git] / takezoe / plugin / book / Br.pm
1 ################################################################################
2 #
3 # <p>µ­½Ò¤·¤¿°ÌÃ֤Ƕ¯À©Åª¤Ëbr¥¿¥°¤Ë¤è¤ë²þ¹Ô¤ò¹Ô¤¤¤Þ¤¹¡£</p>
4 # <pre>
5 # ¤³¤³¤Ç{{br}}²þ¹Ô¤·¤Þ¤¹¡£
6 # </pre>
7 #
8 ################################################################################
9 package plugin::book::Br;
10 #==============================================================================
11 # ¥³¥ó¥¹¥È¥é¥¯¥¿
12 #==============================================================================
13 sub new {
14         my $class = shift;
15         my $self = {};
16         return bless $self,$class;
17 }
18
19 #==============================================================================
20 # ¥¤¥ó¥é¥¤¥ó¥á¥½¥Ã¥É
21 #==============================================================================
22 sub inline {
23         return "<br>";
24 }
25
26 1;