Issue Details (XML | Word | Printable)

Key: MAVENTAGLIB-6
Type: Bug Bug
Status: Resolved Resolved
Resolution: Fixed
Priority: Major Major
Assignee: Fabrizio Giustina
Reporter: Maria Elena Milani
Votes: 0
Watchers: 0
Operations

If you were logged in you would be able to see more operations.
Maven taglib plugin

Tags escaped in Reference

Created: 18/Jan/10 13:51   Updated: 31/Jan/10 11:59   Resolved: 31/Jan/10 11:59
Component/s: None
Affects Version/s: 2.3.1
Fix Version/s: 2.3.1


 Description  « Hide

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



Fabrizio Giustina added a comment - 31/Jan/10 11:59

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>