Zioth

Results 15 comments of Zioth

Correction: The file was exported by MacOS Numbers, not Excel.

I'm not sure the performance concern is still valid. I'm the creator of `autolink4`, which is one of the most intensive users of `addSpecialPattern` - it can easily hit the...

Work-around: Edit /inc/Parsing/Lexer/ParallelRegex.php. Change the getPerlMatchingFlags function to: ``` protected function getPerlMatchingFlags() { return ($this->case ? "umsS" : "umsSi"); } ``` Is there any plan to make this a permanent...

I remembered having started that discussion, but couldn't find it. I forgot that doku didn't always manage issues on github. The benchmark I did back then showed that name=value pairs...

The one thing which got me a speed-up was calling serialize() on just the title and abstract. So having a separate meta file with just the most commonly accessed pieces...

I've figured out the action plugin, though I'm not sure it's as efficient as possible, since it has to do a regex search on every page as its submitted... It's...

Good to hear that this plugin is still being maintained! Once your changes are stable, I can see how well they work for my purposes. I had to override the...

The thing about a plugin that stores arbitrary data is that it's inherrently flexible. You designed the plugin to identify a page with additional data, but people will find many...

Sorry, @packgo. I'm not a developer on this plugin, and I haven't looked at it for almost six years. If you're having trouble with this one, consider trying the newer...

I'm displaying maybe 15 nodes at once, so it's not a huge number. Fix #1 should be very easy. It won't make the tree render any faster, but it will...