Merge pull request #230 from RobertRad/patch-1

Escape special characters for config Asciidoc
This commit is contained in:
Ryan Baxter
2022-06-29 14:07:15 -04:00
committed by GitHub

View File

@@ -144,7 +144,7 @@ public class Main {
}
public String toString() {
return "|" + name + " | " + (StringUtils.hasText(defaultValue) ? ("`" + defaultValue + "`") : "") + " | " + description;
return "|" + name + " | " + (StringUtils.hasText(defaultValue) ? ("`+++" + defaultValue + "+++`") : "") + " | " + description;
}
}