Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Blocker
-
Resolution: Not A Bug
-
Affects Version/s: 1.3
-
Fix Version/s: None
-
Component/s: Module - Xdoc
-
Labels:None
-
Environment:Maven 3.0.3, Maven Maven Site 3.1, Doxia Module Xdoc 1.3
-
Number of attachments :
Description
The link attribute "onclick" gets filtered out after site generation.
If the following is defined in an xdoc document:
<p>
<a onclick="_gaq.push(['_trackPageview', '/path/to/file']);" href="./path/to/file">Download File</a>
</p>
after site generation, it ends up to:
<p>
<a href="./path/to/file">Download File</a>
</p>
Doxia does not support any of the event attributes, only standard attributes are recognized by the sink API. This is documented in the javadocs (see e.g. link).