Skip to content

Commit

Permalink
Merge pull request #55 from antoshka1312/main
Browse files Browse the repository at this point in the history
FileBase: JsonSerialize exclude only HTML symbols
  • Loading branch information
matigramirez authored Nov 3, 2023
2 parents f36796c + 701f5b1 commit 6ac1a3d
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 6ac1a3d

Please sign in to comment.