foundeo / toscript

Converts Tag based CFML to CFML Script
GNU General Public License v3.0
20 stars 9 forks source link

Comments at the end of a line are placed on the next line #10

Open mjhagen opened 7 years ago

mjhagen commented 7 years ago
<cfset foo = "bar" /> <!--- sets foo to "bar" --->

Is converted to

foo = "bar";
// sets foo to "bar"