2015-07-23 20:25:52 +09:30
|
|
|
<?php
|
|
|
|
|
2015-09-04 12:33:23 +09:30
|
|
|
/*
|
|
|
|
* This file is part of Flarum.
|
|
|
|
*
|
2019-11-29 23:01:47 +00:00
|
|
|
* For detailed copyright and license information, please view the
|
|
|
|
* LICENSE file that was distributed with this source code.
|
2015-09-04 12:33:23 +09:30
|
|
|
*/
|
|
|
|
|
2018-01-03 08:00:00 +01:00
|
|
|
use Flarum\Extend;
|
|
|
|
use s9e\TextFormatter\Configurator;
|
2015-07-23 20:25:52 +09:30
|
|
|
|
2021-08-28 18:23:33 +01: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('*');
|
|
|
|
});
|