OSDN Git Service

リソースのパスのプレフィックス処理を修正。
[fswiki/sandbox.git] / takezoe / plugin / book / Section.pm
1 ################################################################################
2 #
3 # <p>¾Ï¤ÎÃæ¤òÊ£¿ô¤Î¥»¥¯¥·¥ç¥ó¶èÀڤ뤿¤á¤Î¥Ñ¥é¥°¥é¥Õ¥×¥é¥°¥¤¥ó¡£</p>
4 # <pre>
5 # {{section Ê¸»úÎó½èÍý}}
6 # ...
7 # {{section Àµµ¬É½¸½}}
8 # ...
9 # </pre>
10 # <p>
11 #   ¤³¤Î¥×¥é¥°¥¤¥ó¤Ï¥Ú¡¼¥¸¾å¤Ë¤Ï²¿¤â½ÐÎϤ·¤Þ¤»¤ó¤¬¡¢toc¥×¥é¥°¥¤¥ó¤Ç¸«½Ð¤·¤Î
12 #   ¥¢¥¦¥È¥é¥¤¥óɽ¼¨¤ò¹Ô¤¦ºÝ¤Ëµ­½Ò¤·¤¿°ÌÃ֤˥»¥¯¥·¥ç¥ó¶èÀڤ꤬ÁÞÆþ¤µ¤ì¤Þ¤¹¡£
13 # </p>
14 #
15 ################################################################################
16 package plugin::book::Section;
17 #==============================================================================
18 # ¥³¥ó¥¹¥È¥é¥¯¥¿
19 #==============================================================================
20 sub new {
21         my $class = shift;
22         my $self = {};
23         return bless $self,$class;
24 }
25
26 #==============================================================================
27 # ¥Ñ¥é¥°¥é¥Õ¥á¥½¥Ã¥É
28 #==============================================================================
29 sub paragraph {
30         my $self  = shift;
31         my $wiki  = shift;
32         my $title = shift;
33         
34         return ''
35 }
36
37 1;