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]
Other format: [Raw text]

[docbook-apps] xsl/groff varlistentry/term


I want the synonymous options to be listed on separate lines,
like this:

  -h
  -help
        Displays a help message ....

I tried

<xsl:template match="varlistentry/term">
 <span class="term"><xsl:call-template name="anchor"/>
  <xsl:apply-templates/>&#10;
 </span>
</xsl:template>

(similar to

<xsl:template match="varlistentry/term">
 <span class="term"><xsl:call-template name="anchor"/>
  <xsl:apply-templates/><br/>
 </span>
</xsl:template>

for XHTML), but I get

       -h--help
              Displays a help message ....

Please help!

-- 
Sam Steingold (http://www.podval.org/~sds) running RedHat9 GNU/Linux
<http://www.camera.org> <http://www.iris.org.il> <http://www.memri.org/>
<http://www.mideasttruth.com/> <http://www.palestine-central.com/links.html>
Are you smart enough to use Lisp?


---------------------------------------------------------------------
To unsubscribe, e-mail: docbook-apps-unsubscribe@lists.oasis-open.org
For additional commands, e-mail: docbook-apps-help@lists.oasis-open.org


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