|
Greater control if you're more comfortable with imperative languages. After that your analogy breaks down. I get all the control I need with a push approach. If the source document may have a title element before a para and I really want the title before any paras in the result, I just have to put this:
<xsl:apply-templates select="title"/>
<xsl:apply-templates selet="para"/>
Some people feel that they have more control with declarative languages. LISP geeks have been insisting on this for decades.
Bob
|