Skip to content

Instantly share code, notes, and snippets.

@lmorillas
Created March 7, 2016 08:21
Show Gist options
  • Save lmorillas/944ee8f9606ca554db15 to your computer and use it in GitHub Desktop.
Save lmorillas/944ee8f9606ca554db15 to your computer and use it in GitHub Desktop.
Removing Exhibit exporters
var exporters = Exhibit.staticRegistry.getKeys(Exhibit.Exporter._registryKey);
var wanted_exporter = exporters.indexOf('semantic-mediawiki');
exporters.splice(wanted_exporter, 1);
for (i=0; i<exporters.length; i++){
Exhibit.staticRegistry.unregister(Exhibit.Exporter._registryKey,exporters[i]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment