OSDN Git Service

PukiWiki/1.4 first beta release
[pukiwiki/pukiwiki.git] / plugin / size.inc.php
1 <?php
2 /////////////////////////////////////////////////
3 // PukiWiki - Yet another WikiWikiWeb clone.
4 //
5 // $Id: size.inc.php,v 1.1 2003/01/27 05:38:47 panda Exp $
6 //
7
8 function plugin_size_inline()
9 {
10         if (func_num_args() < 2) { return FALSE; }
11
12         list($size,$body) = func_get_args();
13         if ($size == '' or $body == '') { return FALSE; }
14
15         return "<span style=\"font-size:{$size}px;display:inline-block;line-height:130%;text-indent:0px\">$body</span>";
16 }
17 ?>