Skip to content

Commit

Permalink
Make javadoc lint happy
Browse files Browse the repository at this point in the history
  • Loading branch information
OndraZizka committed Oct 30, 2018
1 parent c8848ec commit 7b6ad40
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -332,12 +332,12 @@ public interface JBakeConfiguration {
Charset getInputCharset();

/**
* Should JBake prefix <img src="..."> with site base URL?
* Should JBake prefix &lt;img src="..."> with site base URL?
*/
boolean getMakeImagesUrlAbolute();

/**
* Should JBake prefix <img src="..."> with site base URL relative URLs?
* Should JBake prefix &lt;img src="..."> with site base URL relative URLs?
* This is not disjunctive from IMAGES_URL_MAKE_ABSOLUTE.
*/
boolean getRelativeImagePathsPointToAssets();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ public Map<String, String> parseHeaderBlock(final ParserContext context) {
documentModel.put(key, attributes.get(key));
}
}

return null; // TODO: Create the header map first, then apply to the doc.
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public void tryExtractHighestHeader(ParserContext context)

/**
* Getting an inner XML is a bit complicated in JDK.
* TODO: All this just to get rid if the previously added <div>? Let's use JSoup I guess.
* TODO: All this just to get rid if the previously added <div/>? Let's use JSoup I guess.
*/
public static String innerXml(Node docRootNode)
{
Expand Down

0 comments on commit 7b6ad40

Please sign in to comment.