I want to keep string values in my insert object as is
This works fine, the \n is kept
{insert: "erferferf\nerferferf"}
This
{insert: "\n\n\n"}
And this becomes a problem
{insert: "\n"}
it makes the string like this
{insert: "
"}
I want the string to keep the "\n\n\n" rather than becoming a bunch of new lines