Escape special characters for config Asciidoc

This commit is contained in:
RobertRad
2022-06-29 15:43:49 +02:00
committed by Ryan Baxter
parent 20df35799d
commit 383ae64dbb

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;
}
}