friendica-github/include/bbcode.php

12 lines
277 B
PHP
Raw Normal View History

2012-06-25 22:01:32 -07:00
<?php
/**
* @file include/bbcode.php
*/
use Friendica\Content\Text\BBCode;
function bbcode($Text, $preserve_nl = false, $tryoembed = true, $simplehtml = false, $forplaintext = false)
{
return BBCode::convert($Text, $preserve_nl, $tryoembed, $simplehtml, $forplaintext);
2010-08-19 20:52:49 -07:00
}