2015-07-23 18:55:52 +08:00
|
|
|
<?php
|
|
|
|
|
2015-09-04 11:03:23 +08:00
|
|
|
/*
|
|
|
|
* This file is part of Flarum.
|
|
|
|
*
|
|
|
|
* (c) Toby Zerner <toby.zerner@gmail.com>
|
|
|
|
*
|
|
|
|
* For the full copyright and license information, please view the LICENSE
|
|
|
|
* file that was distributed with this source code.
|
|
|
|
*/
|
|
|
|
|
2018-01-03 15:00:00 +08:00
|
|
|
use Flarum\Extend;
|
|
|
|
use s9e\TextFormatter\Configurator;
|
2015-07-23 18:55:52 +08:00
|
|
|
|
2018-06-17 13:30:15 +08:00
|
|
|
return (new Extend\Formatter)
|
|
|
|
->configure(function (Configurator $config) {
|
2018-01-03 15:00:00 +08:00
|
|
|
$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('*');
|
2018-06-17 13:30:15 +08:00
|
|
|
});
|