Escape special characters for config Asciidoc

This commit is contained in:
RobertRad
2022-06-29 15:43:49 +02:00
committed by GitHub
parent 08e3b24a27
commit 8c8f591c99

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