Skip to content

Commit 5c2ed3d

Browse files
committed
Disabled html escaping
1 parent 9d65cbb commit 5c2ed3d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/javawebstack/abstractdata/AbstractElement.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ default Number number() {
7777

7878
default String toJsonString(boolean pretty) {
7979
if (pretty)
80-
return new GsonBuilder().setPrettyPrinting().create().toJson(toJson());
80+
return new GsonBuilder().setPrettyPrinting().disableHtmlEscaping().create().toJson(toJson());
8181
return new Gson().toJson(toJson());
8282
}
8383

0 commit comments

Comments
 (0)