Description
Is there any chance of getting a way to change the GOOBER_ID
used, so that we don't end up with window._goober
?
My issue is that I'm developing a plugin for Obsidian and would like to use goober for my styles. The convention here is for each plugin to clean up any thing it has added to the dom when it unloads. In this case this means removing the #_goober
element. The issue is if any other plugin happens to also want to use goober, I'm taking their styles with me when my plugin unloads.
Even setting the target
doesn't actually work here, since it still creates a style tag with #_goober
inside it meaning it still polutes window._goober
.
I've seen proposals for creating multiple instances of goober, and that would be the optimal solution. But if there is a quicker way to just expose the GOOBER_ID
as a configurable value for an entire project that would also be extremely helpful.