private JiraRendererModuleDescriptor jiraRendererModuleDescriptor;
private PropertySet properties;
private Whitelist whitelist;
public TinyMCERendererReversePlugin() {
PropertiesManager propertiesManager = ComponentManager.getComponent(PropertiesManager.class);
this.properties = propertiesManager.getPropertySet();
this.whitelist = Whitelist.none();
this.whitelist.addTags("table", "thead","tbody", "td", "tr", "img");
this.whitelist.addAttributes("img", "src", "height", "width");
this.whitelist.addAttributes("table", "cellpadding", "cellspacing", "border");
}