Skip to content
This repository has been archived by the owner on Jan 26, 2022. It is now read-only.

Commit

Permalink
Markdown summary fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Tuke-Nuke committed Aug 2, 2017
1 parent 46eda00 commit 612d57f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public void write(BufferedWriter writer, AddonInfo addon) throws IOException {
public void addSection(StringJoiner wiki, StringJoiner summary, String section, List<SyntaxInfo> list) {
if (list.size() == 0)
return;
summary.add(" * [" + section + "](#" + section + ")");
summary.add(" * [" + section + "](#" + section.toLowerCase().replace(' ', '_') + ")");
wiki.add("## " + section);
wiki.add(" ");
StringJoiner syntaxes = new StringJoiner("\n \n---\n \n");
Expand Down

0 comments on commit 612d57f

Please sign in to comment.