diff --git a/plasmid/source/core-plugins/eln-lims/1/dss/reporting-plugins/newbrowserapi/script.py b/plasmid/source/core-plugins/eln-lims/1/dss/reporting-plugins/newbrowserapi/script.py
index b2fc6a90c3e17bf4d59d3fc2d98065772d421d28..49ead64838869797ae31f1896b9b48559e5df364 100644
--- a/plasmid/source/core-plugins/eln-lims/1/dss/reporting-plugins/newbrowserapi/script.py
+++ b/plasmid/source/core-plugins/eln-lims/1/dss/reporting-plugins/newbrowserapi/script.py
@@ -73,6 +73,7 @@ def updateIfIsPropertyRichText(properties, propertyCode, propertyValue):
 	if isPropertyRichText(properties, propertyCode):
 		if propertyValue is not None:
 			cleanerProperties = CleanerProperties();
+			cleanerProperties.setPruneTags("meta, link, script");
 			cleaner = HtmlCleaner(cleanerProperties);
 			htmlSerializer = SimpleHtmlSerializer(cleanerProperties);
 			propertytagNode = cleaner.clean(propertyValue);