xsl-list
[Top] [All Lists]

Re: [xsl] Advice on dictionary conversion

2011-01-19 04:56:50

Important - if you for any reason change the Word file, keep the
original!!!!

The same applies if you use an online converter and then edit its output
by hand.
If there are ad-hoc changes to make during the process of up-conversion, I typically try to do these in a stylesheet as one of the phases of the transformation. This is where Wendell's technique of adding id attributes can come in handy. It's also about the only time I've used the XSLT feature of patterns base on id():

<xsl:template match="id('ABC123')">
<..../>
</xsl:template>

Michael Kay
Saxonica

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--