Lines Matching refs:x_comment

1594     function xs_format($x_comment)  argument
1596 $x_comment = preg_replace('/\[([bius])\]/i', '<\\1>', $x_comment);
1597 $x_comment = preg_replace('/\[\/([bius])\]/i', '</\\1>', $x_comment);
1599 $x_comment = preg_replace('/\[ol\]/i', '<ol>', $x_comment);
1600 $x_comment = preg_replace('/\[\/ol\]/i', '</ol>', $x_comment);
1602 $x_comment = preg_replace('/\[ul\]/i', '<ul>', $x_comment);
1603 $x_comment = preg_replace('/\[\/ul\]/i', '</ul>', $x_comment);
1605 $x_comment = preg_replace('/\[li\]/i', '<li>', $x_comment);
1606 $x_comment = preg_replace('/\[\/li\]/i', '</li>', $x_comment);
1608 $x_comment = preg_replace('/\[sup\]/i', '<sup>', $x_comment);
1609 $x_comment = preg_replace('/\[\/sup\]/i', '</sup>', $x_comment);
1611 $x_comment = preg_replace('/\[sub\]/i', '<sub>', $x_comment);
1612 $x_comment = preg_replace('/\[\/sub\]/i', '</sub>', $x_comment);
1614 $x_comment = preg_replace('/\[hr\]/i', '<hr>', $x_comment);
1616 $x_comment = preg_replace('/\[blockquote\]/i', '<blockquote>', $x_comment);
1617 $x_comment = preg_replace('/\[\/blockquote\]/i', '</blockquote>', $x_comment);
1619 $x_comment = preg_replace('/\[code\]/i', '<div class="it_code"><code>', $x_comment);
1620 $x_comment = preg_replace('/\[\/code\]/i', '</code></div>', $x_comment);
1622 $x_comment = preg_replace('/\[red\]/i', '<span style="color:red;">', $x_comment);
1623 $x_comment = preg_replace('/\[\/red\]/i', '</span>', $x_comment);
1625 $x_comment = preg_replace('/\[grn\]/i', '<span style="color:green;">', $x_comment);
1626 $x_comment = preg_replace('/\[\/grn\]/i', '</span>', $x_comment);
1628 $x_comment = preg_replace('/\[bgy\]/i', '<span style="background:yellow;">', $x_comment);
1629 $x_comment = preg_replace('/\[\/bgy\]/i', '</span>', $x_comment);
1631 $x_comment = preg_replace('/\[blu\]/i', '<span style="color:blue;">', $x_comment);
1632 $x_comment = preg_replace('/\[\/blu\]/i', '</span>', $x_comment);
1638 $x_comment = preg_replace($urlsuch, $urlreplace, $x_comment);
1639 …$x_comment = preg_replace("/\[link\]www.(.*?)\[\/link\]/si", "<a target=\"_blank\" href=\"http://w…
1640 …$x_comment = preg_replace("/\[link=www.(.*?)\](.*?)\[\/link\]/si", "<a target=\"_blank\" href=\"ht…
1641 …$x_comment = preg_replace("/\[link\](\:.*?)\[\/link\]/si", "<a target=\"_blank\" href=\"doku.php?i…
1642 …$x_comment = preg_replace("/\[link=(\:.*?)\]\[\/link\]/si", "<a target=\"_blank\" href=\"doku.php?…
1643 …$x_comment = preg_replace("/\[link=(\:.*?)\](.*?)\[\/link\]/si", "<a target=\"_blank\" href=\"doku…
1644 …$x_comment = preg_replace("/\[link\](.*?)\[\/link\]/si", "<a target=\"_blank\" href=\"\\1\">\\1</a…
1645 …$x_comment = preg_replace("/\[link=(.*?)\](.*?)\[\/link\]/si", "<a target=\"_blank\" href=\"\\1\">…
1647 …$x_comment = preg_replace("/\[img\](http.*?)\[\/img\]/si", "<img src=\"\\1\"title=\"\\1\" alt=\"\\…
1648 …$x_comment = preg_replace("/\[img=(http.*?)\](.*?)\[\/img\]/si", "<img src=\"\\1\" title=\"\\2\" a…
1649 …$x_comment = preg_replace("/\[img\](file.*?)\[\/img\]/si", "<img src=\"\\1\" title=\"\\1\" alt=\"\…
1650 …$x_comment = preg_replace("/\[img=(file.*?)\](.*?)\[\/img\]/si", "<img src=\"\\1\" title=\"\\2\" a…
1651x_comment = preg_replace("/\[img\](\:.*?)\[\/img\]/si", "<img src=\"". DOKU_URL . "lib/exe/fetch.p…
1652x_comment = preg_replace("/\[img=(\:.*?)\](.*?)\[\/img\]/si", "<img src=\"". DOKU_URL . "lib/exe/f…
1653 …$x_comment = preg_replace("/\[img\](.*?)\[\/img\]/si", "<img src=\"\\1\" title=\"\\1\" style=\"max…
1654 …$x_comment = preg_replace("/\[img=(.*?)\](.*?)\[\/img\]/si", "<img src=\"\\1\" title=\"\\2\" style…
1664 return $x_comment;