Robert Rohde wrote: > Makes it awfully ugly to pass the result of one template to another > template if your syntax is: > > <template name="sometemplate" var1="<template name="birthday" val="May > 24" />" var2="bar"/>
Eww! - hadn't thought of that one. Back to the other style: <template name="sometemplate"> var1=<template name="birthday"> val="May 24";</template>; var2=bar; </template> or unnamed: <template name="sometemplate"> <template name="birthday"> val="May 24";</template>; bar; </template> Recursive template processing should be default. Obviously, this is a work in progress... Mike _______________________________________________ Wikitech-l mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/wikitech-l
