Lets say I have a function in my model, that generates a style tag based on an int
public string GetStyle(int? size){
if(size > 99)
return "style=\"margin: 20px;\"";
else
return "";
}
If I render this out using
<li @GetStyle(123)>123</li>
It outputs this:
<li style=""margin:20px;"">123</li>
(Note the double double-quotes). If I change the escaped double quotes in the function to single quotes, it outputs this:
<li style="'margin:20px;'">123</li>
Neither is correct, and I'm forced to either output an empty style tag if no style is required.