OASIS Mailing List ArchivesView the OASIS mailing list archive below
or browse/search using MarkMail.

 


Help: OASIS Mailing Lists Help | MarkMail Help

docbook-apps message

[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]


Subject: docbookk xml -> html looses language attribute


hi,

this docbook

<informalexample>
  <programlisting language="c">...</programlisting>
</informalexample>

will be converted to this html:

<div class="informalexample">
  <pre class="programlisting">...</pre>
</div>

This looses the language="c" information. How would one 'fix' that. I can
probably handle this in the customization layer. I guess using the lang
attribute of pre is out of question (should probably be used for spoken
languages). What other option would you suggest:

<div class="informalexample">
  <pre class="programlisting" ><code class="c">...</code></pre>
</div>

<div class="informalexample">
  <div class="programlisting" ><pre class="c">...</pre></div>
</div>

... I need the information as I post process the generated HTML to get syntax
highlighting (I am using xsltproc and there it does not work for known reasons).

Stefan


[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]