Skip to content

Commit

Permalink
Fix misformatted plugin documentation
Browse files Browse the repository at this point in the history
Fixes the rendering of plugin documentation that references
${placeholders} as literals, which currently is not rendering correctly
on the Maven plugin site.

This closes #112
  • Loading branch information
ascopes authored and michael-o committed May 31, 2024
1 parent bbab747 commit e58908a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,14 +83,14 @@ public abstract class AbstractJxrReport extends AbstractMavenReport {

/**
* Directory where Velocity templates can be found to generate overviews, frames and summaries. Should not be used.
* If used, should be an absolute path, like {@code "${basedir}/myTemplates"}.
* If used, should be an absolute path, like <code>{@literal "${basedir}/myTemplates"}</code>.
*/
@Parameter
private String templateDir;

/**
* Style sheet used for the Xref HTML files. Should not be used. If used, should be an absolute path, like
* {@code "${basedir}/myStyles.css"}.
* <code>{@literal "${basedir}/myStyles.css"}</code>.
*/
@Parameter
private String stylesheet;
Expand Down

0 comments on commit e58908a

Please sign in to comment.