I would like to remove tags which contain only whitespace/newline/tab chars, as below:
<p> </p>
How would you do this using xpath functions and xslt templates?
|
|
This transformation (overriding the identity rule):
when applied to the following XML document:
correctly produces the wanted result:
Remember: Using and overriding the identity rule/template is the most fundamental and powerful XSLT design pattern. It is the right choice for a variety of problems where most of the nodes are to be copied unchanged and only some specific nodes need be altered, deleted, renamed, ..., etc. Note: @Abel in his comment recommends that some bits of this solution need to be further explained:
|
|||||||||||||||
|