JoshyPHP Hi there! I'm working again on the code for a better Board-to-Tag conversion, and I decided to abandon the "do-it-yourself" bbcode to XML translation and go fully with your fantastic library s9e/TextFormatter.
I'm using the Forum bundle at the moment, with excellent results, but I noticed that for some reason the emoticons/emoji are not converted.
I tried an experiment, doing a small quick conversion using, instead of the Forum bundle, only the emoji Plugin.
If I try this code
$configurator = new s9e\TextFormatter\Configurator;
$configurator->Emoji->useEmojiOne();
extract($configurator->finalize());
they are converted perfectly.
I was wondering, is there a way (I tried all sort of things) to tweak some settings in the Forum bundle,to set explicitly for example the usage of Emoji->useEmojiOne(); in the Bundle itself?
You did a superb job with this library, but if I may suggest you an improvement that would immensely help potential users,, some extra usage about "mixing" Bundles with Configurator examples would be great!
Thanks in advance!