foundeo / toscript

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

Cfscript.me - Created a "cfoutput()" on converted tag based code. #46

Open Grimdari opened 2 years ago

Grimdari commented 2 years ago

The following tag-based code:

`

#attribute.toString()#
` Created the following cfscript: `while ( condition="#atribEnum.hasMore()#" ) { attribute = atribEnum.next(); cfoutput( ) { writeOutput("#attribute.toString()#"); } writeOutput("
"); }` The `cfoutput() {}` is not required nor valid cfscript. Apologies for the above cfscript. I could not get it to stay in the code tags. :(