mirror of
https://github.com/friendica/friendica
synced 2024-11-10 06:22:53 +00:00
11 lines
277 B
PHP
11 lines
277 B
PHP
<?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);
|
|
}
|