Hi,
Would be great if we had a tag extention to remove linebreaks. Basically "minify" the output. Here are some examples:
Code:
marker_infoText:'<!--@ItemPublisher:Item.PointDescription-->'
Output:
marker_infoText:'Rua Senhora Porto 930, 4250-453<br />
<a href="/">Porto</a>'
Code:
marker_infoText:'<!--@ItemPublisher:Item.PointDescription.Replace("<br />","")-->'
Output:
marker_infoText:'Rua Senhora Porto 930, 4250-453
<a href="/">Porto</a>'
Code:
marker_infoText:'<!--@ItemPublisher:Item.PointDescription.HtmlEncoded()-->'
Output:
marker_infoText:'Rua Senhora Porto 930, 4250-453<br />
<a href="/">Porto</a>'
Code:
marker_infoText:'<!--@ItemPublisher:Item.PointDescription.StripHtml()-->'
Output:
marker_infoText:'Rua Senhora Porto 930, 4250-453
We were using tags within js to create Google Maps markers, and cannot apply it directly to the var, since the tag "keeps" linebreak
BR, Nuno