Skip to content
Snippets Groups Projects

fix(bibliographies): [AOU-1782] do not escape HTML tags in title when...

Merged Nicolas.Rod requested to merge rodn-1782-tags-in-title-when-including-access-levels into master
1 file
+ 3
0
Compare changes
  • Side-by-side
  • Inline
@@ -507,6 +507,9 @@ public class BibliographyGeneratorService {
}
if (mustAddLink) {
citationText = this.addLink(citationText, indexEntry, parameters);
} else {
// allowed tags in title are not formatted yet
citationText = CleanTool.restoreAllowedHtmlTags(citationText, List.of(CleanTool.TAGS_ALLOWED_IN_TITLE));
}
citationText = this.addAbstract(citationText, indexEntry, parameters);
citationText = this.addThumbnail(citationText, indexEntry, parameters);
Loading