Skip to content

Commit

Permalink
Don't encode ShapeStringify (#7503)
Browse files Browse the repository at this point in the history
  • Loading branch information
jtkech authored Nov 5, 2020
1 parent a349da5 commit 2effa6f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ static async ValueTask<FluidValue> Awaited(Task<IHtmlContent> task)
using (var writer = new StringWriter())
{
task.Result.WriteTo(writer, NullHtmlEncoder.Default);
value = new StringValue(writer.ToString());
value = new StringValue(writer.ToString(), false);
}

return new ValueTask<FluidValue>(value);
Expand Down

0 comments on commit 2effa6f

Please sign in to comment.