This is the mail archive of the docbook-apps@lists.oasis-open.org mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: Processing html/wml files to Docbook-SGML


As you note, you'll probably be happiest starting with well-formed input 
(no end-tag minimization, etc.).  I believe nsgmls or sx can help with this.

I'm not familiar with WML, but I can envision writing an XSLT stylesheet to 
do most of the job.  For example,

   <xsl:template match="p">
     <para>
       <xsl:apply-templates/>
     </para>
   </xsl:template>

   <xsl:template match="key">
     <keycap>
       <xsl:choose>
         <xsl:when test="@CTRL">
           <xsl:text>CTRL</xsl:text>
         </xsl:when>
         <xsl:when test="@ALT">
           <xsl:text>ALT</xsl:text>
         </xsl:when>
       </xsl:choose>
     </keycap>
   </xsl:template>

At 8/15/01, Carsten Wartmann wrote:
>Michael Wiedmann writes:
>  > Carsten Wartmann wrote:
>  >
>  > [ Hi Carsten, long time no hear! ]
>  >
>  > > I have the unthankfull task to include some WML (Website
>  > > Meta-Language) files into a Docbook SGML document. The files are also
>  > > avaible as (quite plain) html, but then contain some small tables. So
>  > > such a convertor would also help.
>  >
>  > Maybe I got you wrong, but why do you not just include the contents of
>  > your files like:
>  >
>  > <programlisting>
>  > <![CDATA[
>
>No, yes ;-) I really need to convert the files into real SGML. Not
>just a listing of it.

--
Jon Willeke, Quality Engineer
InterSystems Corp.
One Memorial Drive, Cambridge, MA 02142


----------------------------------------------------------------
To subscribe or unsubscribe from this elist use the subscription
manager: <http://lists.oasis-open.org/ob/adm.pl>


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]