mirror of
https://github.com/apache/maven.git
synced 2025-02-08 19:15:12 +00:00
PR: MNG-1195
Submitted by: Edwin Punzalan Fix validation of generated HTML git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@321335 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
2df01ca71f
commit
d817a178ef
@ -186,7 +186,7 @@ private void doFilesSummary( Map filesMap )
|
|||||||
sink.tableRow();
|
sink.tableRow();
|
||||||
|
|
||||||
sink.tableCell();
|
sink.tableCell();
|
||||||
sink.link( "#" + filename );
|
sink.link( "#" + filename.replace( '/', '.' ) );
|
||||||
sink.text( filename );
|
sink.text( filename );
|
||||||
sink.link_();
|
sink.link_();
|
||||||
sink.tableCell_();
|
sink.tableCell_();
|
||||||
@ -221,7 +221,7 @@ private void doDetails( Map filesMap )
|
|||||||
|
|
||||||
sink.section1();
|
sink.section1();
|
||||||
sink.sectionTitle1();
|
sink.sectionTitle1();
|
||||||
sink.anchor( file );
|
sink.anchor( file.replace( '/', '.' ) );
|
||||||
sink.text( file );
|
sink.text( file );
|
||||||
sink.anchor_();
|
sink.anchor_();
|
||||||
sink.sectionTitle1_();
|
sink.sectionTitle1_();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user