2015-07-23 18:55:52 +08:00
|
|
|
<?php
|
|
|
|
|
2015-09-04 11:03:23 +08:00
|
|
|
/*
|
|
|
|
* This file is part of Flarum.
|
|
|
|
*
|
2019-11-30 07:01:47 +08:00
|
|
|
* For detailed copyright and license information, please view the
|
|
|
|
* LICENSE file that was distributed with this source code.
|
2015-09-04 11:03:23 +08:00
|
|
|
*/
|
|
|
|
|
2018-01-03 15:00:00 +08:00
|
|
|
use Flarum\Extend;
|
|
|
|
use s9e\TextFormatter\Configurator;
|
2015-07-23 18:55:52 +08:00
|
|
|
|
2021-08-29 01:23:33 +08:00
|
|
|
return (new Extend\Formatter)
|
|
|
|
->configure(function (Configurator $config) {
|
|
|
|
$config->BBCodes->addFromRepository('B');
|
|
|
|
$config->BBCodes->addFromRepository('I');
|
|
|
|
$config->BBCodes->addFromRepository('U');
|
|
|
|
$config->BBCodes->addFromRepository('S');
|
|
|
|
$config->BBCodes->addFromRepository('URL');
|
|
|
|
$config->BBCodes->addFromRepository('IMG');
|
|
|
|
$config->BBCodes->addFromRepository('EMAIL');
|
|
|
|
$config->BBCodes->addFromRepository('CODE');
|
|
|
|
$config->BBCodes->addFromRepository('QUOTE');
|
|
|
|
$config->BBCodes->addFromRepository('LIST');
|
|
|
|
$config->BBCodes->addFromRepository('DEL');
|
|
|
|
$config->BBCodes->addFromRepository('COLOR');
|
|
|
|
$config->BBCodes->addFromRepository('CENTER');
|
|
|
|
$config->BBCodes->addFromRepository('SIZE');
|
|
|
|
$config->BBCodes->addFromRepository('*');
|
|
|
|
});
|