Never did XSLT before. Is that possible to inherit a doc and replace just one tag? If yes, can you provide any example please?
Thank you
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You start with the template
then you add templates for transforming the nodes you want to transform e.g.
transforms all
tdelements intothelements ordeletes all
h6elements.If you want to transform a single
tdthen you need some way to identify it, assuming it has anidattribute use a match pattern likeThat sample sets the CSS
background-colorproperty of the particulartdelement.