I found this style sheet http://fo2wordml.sourceforge.net/ which convert xsl-fo documents into WordML this succeeded with text but when there is graphics the images are omitted in addition to that not all the colors are mapped ,does any one know any reliable style sheet to convert from xsl-fo to wordML with all formatting tags (tables , images , links , columns, colors,etc...)?
 
Is there any XSLT to convert to XML to gnumeric xml , CSV?
 
Best Regards,
Amgad Hanafy,

From: [EMAIL PROTECTED]
Sent: Thu 16/02/2006 06:44 م
To: fop-users@xmlgraphics.apache.org
Subject: Re: convert from XSL-FO to MSWORD


Below is a VERY simple framework sample stylesheet to get you started.  I did not go this route due to the fact that WordML is not supported in older versions of Word:

<?xml version="1.0" encoding="ISO-8859-1" ?>
<?mso-application progid="Word.Document"?>
<xsl:stylesheet version="1.0"
        xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
        xmlns:w="http://schemas.microsoft.com/office/word/2003/wordml">

        <xsl:output method="xml" indent="yes" encoding="utf-8"/>

<xsl:template match="/">

<w:wordDocument>
<w:body>
        <w:p>
                <w:r>
                        <w:t>This is a very simple paragraph that will be rendered OK in Word on an XP machine.  Add stuff here and enjoy.</w:t>
                </w:r>
        </w:p>
</w:body>
</w:wordDocument>
</xsl:template>
</xsl:stylesheet>


Good luck.
-Lou



"Mohamed, Amgad" <[EMAIL PROTECTED]>

02/16/2006 10:07 AM

Please respond to
fop-users@xmlgraphics.apache.org

To
"fop-users@xmlgraphics.apache.org" <fop-users@xmlgraphics.apache.org>
cc
Subject
convert from XSL-FO to MSWORD





Dear All,
 
Is there is any way to convert from XSL-FO to MSWORD?
 
Best Regards,
Amgad Hanafy.

Reply via email to