Skip to content

Commit

Permalink
FileBase: JsonSerialize exclude only HTML symbols
Browse files Browse the repository at this point in the history
  • Loading branch information
Anton Dolgov authored and Anton Dolgov committed Oct 31, 2023
1 parent f36796c commit 701f5b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Parsec/Shaiya/Core/FileBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public virtual string JsonSerialize(FileBase obj, params string[] ignoredPropert
{
ContractResolver = new CamelCasePropertyNamesContractResolver(),
DefaultValueHandling = DefaultValueHandling.Include,
StringEscapeHandling = StringEscapeHandling.EscapeNonAscii,
StringEscapeHandling = StringEscapeHandling.EscapeHtml,
Formatting = Formatting.Indented
};

Expand Down

0 comments on commit 701f5b1

Please sign in to comment.