Search found 2 matches

by levvusss
Mon Apr 05, 2021 9:24 pm
Forum: General XML Questions
Topic: How create markup?
Replies: 2
Views: 1096

Re: How create markup?

Hi, If you have an XML document like this: <root> <price>2411</price> </root> you can create an XSLT stylesheet which adds 10% to all price elements, it would look something like this: <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xs="http://www.w3.org/2001/X...
by levvusss
Sun Apr 04, 2021 3:25 pm
Forum: General XML Questions
Topic: How create markup?
Replies: 2
Views: 1096

How create markup?

Hello. I have "price" field, like:

Code: Select all

<price>2411</price>
how tranform it, add markup for example +10%?

Code: Select all

<price>2652</price>
Thank you!