JoshyPHP

Results 24 comments of JoshyPHP

Bundles are a way to easily add and redistribute a preconfigured parser to an application, but Flarum already has a parser and that's the one you should use. Check out...

You can't use `registerParser()` to add parsers to a bundle. A custom parser is only useful for custom markup, if you need to transform an attribute value into another format...

If the goal is to replace the original markup to make it match Flarum's (rather than extend Flarum to support vBulletin's markup) then what you need is a Parser instance...

The code is actually old; I haven't touched it in a while. After re-reading it, I think it's incomplete because the reparser manager looks like it needs to be updated

@rxu Not in the foreseeable future, no. As I recall, the filtering stuff is done but there's something about the way resume data is saved that requires some change. I...

Keep it open for now. I rebased it on current master (before that, the test suite failed due to an unrelated error) and I'll take a second pass sometime in...

@marc1706 I think this is about done ~~but it will have to be rebased/fixed after #6084 is merged.~~ There's a summary at https://area51.phpbb.com/phpBB/viewtopic.php?f=146&t=76626

!set wip It will probably cause some tests to fail.

I don't have any skin in the game but I would advise against using HTML to escape plain text, as it changes the nature of the data. If the data...

As far as I can tell, it should work fine as long as MySQL is configured for `utf8mb4`. On my local MariaDB install, this is what I use: ``` [mysqld]...