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
|
|
|
*/
|
|
|
|
|
2023-05-02 16:39:43 +08:00
|
|
|
namespace Flarum\BBCode;
|
|
|
|
|
2018-01-03 15:00:00 +08:00
|
|
|
use Flarum\Extend;
|
2015-07-23 18:55:52 +08:00
|
|
|
|
2023-04-28 03:26:28 +08:00
|
|
|
return [
|
|
|
|
new Extend\Locales(__DIR__.'/locale'),
|
|
|
|
|
|
|
|
(new Extend\Formatter)
|
2023-05-02 16:39:43 +08:00
|
|
|
->render(Render::class)
|
|
|
|
->configure(Configure::class),
|
2023-04-28 03:26:28 +08:00
|
|
|
];
|