Prevent text from wrapping in templates

I have a link with a javascript onclick event on it. The problem is when it renders the page the link wraps causing the single quote to show up on the second line thus causing IE to throw a javascript error. Is there code to prevent templates from doing this at render time?

Here is an example of the output:

<p><a href="mailto:emailaddress?subject=Question%20About%20Press
" onclick=“dcsMultiTrack(‘DCS.dcsuri’,’/email/test-email-link.html’,‘WT.ti’,'E-mail Link: email address from Press
');” class=“blue”>email address</a></p>

If there is some velocity code / macros rendering that link (or parts thereof), then make sure that you end each line with a ##. This prevents the line breaks from appearing.

Perfect…that fixed it.