Closed
Description
Search Terms
JavascriptIndexPlugin, search, weight, extension
Problem
I'm writing a plugin that alters some custom reflections in the javascript index. It needs to modify weight of custom reflections (which was implemented in a very recent release) and format the reflection name with a special pattern. Since I wasn't able to alter how reflections are gathered, I had to override the plugin entierly, which complexifies my workflow in order to always stay up to date with Typedoc.
Suggested Solution
Ideally, plugins should be able to alter what is iterated on here:
typedoc/src/lib/output/plugins/JavascriptIndexPlugin.ts
Lines 50 to 52 in ba58696
Maybe the
JavascriptIndexPlugin
could be converted to an event emitter we could hook events on.