Guest User

hive off nested childs

a guest
Oct 26th, 2012
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.75 KB | None | 0 0
  1. <!--
  2.     i would like to hive off the nested child-node
  3.     but in the correct order
  4.     e.g.:
  5. -->
  6. <!-- source example 1-->
  7.  
  8. <span style="font-family: [Ohne];">
  9.     <span style="font-family: qwe;">etu</span><!-- hive off this nested child-node above the parent -->
  10.     restia volorsin  
  11. </span>
  12.  
  13. <!-- after xslt -->
  14.  
  15. <span style="font-family: [Ohne];">
  16.    
  17.     restia volorsin  
  18. </span>
  19. <span style="font-family: qwe;">etu</span>
  20.  
  21.  
  22. <!-- or  source example 2-->
  23.  
  24. <span style="font-family: [Ohne];">
  25.     restia volorsin
  26.     <span style="font-family: qwe;">etu</span><!-- hive off this nested child-node after the parent -->
  27. </span>
  28.  
  29. <!-- after xslt -->
  30.  
  31. <span style="font-family: qwe;">etu</span>
  32. <span style="font-family: [Ohne];">
  33.    
  34.     restia volorsin  
  35. </span>
Advertisement
Add Comment
Please, Sign In to add comment