Nesting ColdFusion Custom Tag Snippet
Just an FYI, I have just added my small nested tags demo to my ColdFusion snippets directory.
One other note. I built it in, but didn't demo it. The Item.cfm custom tag can tag data either in the value attribute or as generated content. Therefore, the following tags would all produce the same content:
<!--- Add item. --->
<cf_item>
Sarah Vivenzio
</cf_item>
<!--- Add item. --->
<cf_item
value="Sarah Vivenzio"
/>
<!--- Add item. --->
<cf_item value="Sarah Vivenzio">
Want to use code from this post? Check out the license.
Reader Comments