I want to show a string value with \n\r in a textarea.
I set this in jquery with Model
var content = "@Model.Content";
$("#ListContainer #@Html.IdFor(model => model.Content)").val(content);
I use '' , `` for @Model.Content but get error
i get error "" string literal contains an unescaped line break
how can i show this?

var content = `@Model.Content`;$("#ListContainer #@Html.IdFor(model => model.Content)").val('sss');it is ok , or when i replace content\r\nwith '' it is ok. or set a value without break line it is ok'