I have written my own simple tag extension as a helper for displaying blocks of repeating html.
For example, let's say I have this pattern: <ul> <li>first chunk of text<br /><div class="some_class">second chunk of text</div><br /><b>third chunk of text</b></li> <li>first chunk of text<br /><div class="some_class">second chunk of text</div><br /><b>third chunk of text</b></li> <li>first chunk of text<br /><div class="some_class">second chunk of text</div><br /><b>third chunk of text</b></li> <li>first chunk of text<br /><div class="some_class">second chunk of text</div><br /><b>third chunk of text</b></li> </ul> I realize the above markup doesn't make much sense, but it's just there to illustrate the issue. Anyhow, for convenience I made my own extension that allows me to do this instead: <ul> <r:my_tag attribute1="text1" attribute2="text2">a bunch of text</r:my_tag> <r:my_tag attribute1="text1" attribute2="text2">a bunch of text</r:my_tag> <r:my_tag attribute1="text1" attribute2="text2">a bunch of text</r:my_tag> <r:my_tag attribute1="text1" attribute2="text2">a bunch of text</r:my_tag> </ul> This all works fine. However, I am running into the case where my markup includes an image. I am using the asset manager extension to display images like this: <r:asset:image name="my_image"/> The problems is this: Is there a way for my tag extension to use the <r:asset> tag? -- --- You received this message because you are subscribed to the Google Groups "Radiant CMS" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
