migrated from sourceforge tracker https://sourceforge.net/tracker/?func=detail&aid=1673837&group_id=93991&atid=606303
The generated reference report escapes all HTML (unlike the taglib doc), but this shouldn't be the case.
An example: http://struts.apache.org/1.x/struts-taglib/tagreference.html#struts-html.tl d
The default behaviour is to escape text, but it may be changes to allow html in descriptions by setting the "parseHtml" parameter in the pom
<plugin> <groupId>net.sourceforge.maven-taglib</groupId> <artifactId>maven-taglib-plugin</artifactId> <configuration> <parseHtml>true</parseHtml> </configuration> </plugin>
The default behaviour is to escape text, but it may be changes to allow html in descriptions by setting the "parseHtml" parameter in the pom
<plugin> <groupId>net.sourceforge.maven-taglib</groupId> <artifactId>maven-taglib-plugin</artifactId> <configuration> <parseHtml>true</parseHtml> </configuration> </plugin>