Hi,
Is there a program that can tighten up my codes so that all the white spaces and carriage returns are rid of?
Of course this makes it more difficult to read, so I would ideally run the program just before uploading to the server.
Btw, I have already tried and used <cfsilent> and <cfsetting> and they do cut down the amount of white spaces somewhat (not entirely).
Thank you all.
Min
Is there a program that can tighten up my codes so that all the white spaces and carriage returns are rid of?
Code:
<cfif x gt y>
<cfset x = x+1>
</cfif>
becomes
<cfif x gt y><cfset x=x+1></cfif>
Of course this makes it more difficult to read, so I would ideally run the program just before uploading to the server.
Btw, I have already tried and used <cfsilent> and <cfsetting> and they do cut down the amount of white spaces somewhat (not entirely).
Thank you all.
Min