the content of <acronym></acronym> is not printed when using xsl
Logged In: YES user_id=81663
Are you sure your document is valid? I can't reproduce this problem, please attach a (small) test case.
Logged In: YES user_id=131869
Here is a test case.
test case
I use the command: xmlto html glossary.xml
Logged In: YES user_id=118135
Sigurd,
To have acronyms show up in glossary, you must set the glossentry.show.acronym parameter to 'yes'. The way to do that with xmlto is to create a separate file (called "custom.xsl" or whatever), and then run xmlto like this:
xmlto -m custom.xsl html glossary.xml
The contents of the custom.xsl file should be:
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version='1.0'> <xsl:import href="http://docbook.sourceforge.net/release/xsl/current/html/chunk.xsl"/> <xsl:param name="glossentry.show.acronym">yes</xsl:param> </xsl:stylesheet>
Thanks - that was it.
Logged In: YES
user_id=81663
Are you sure your document is valid? I can't reproduce this
problem, please attach a (small) test case.
Logged In: YES
user_id=131869
Here is a test case.
test case
Logged In: YES
user_id=131869
I use the command:
xmlto html glossary.xml
Logged In: YES
user_id=118135
Sigurd,
To have acronyms show up in glossary, you must set the
glossentry.show.acronym parameter to 'yes'. The way to
do that with xmlto is to create a separate file (called
"custom.xsl" or whatever), and then run xmlto like this:
xmlto -m custom.xsl html glossary.xml
The contents of the custom.xsl file should be:
<xsl:stylesheet
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version='1.0'>
<xsl:import
href="http://docbook.sourceforge.net/release/xsl/current/html/chunk.xsl"/>
<xsl:param name="glossentry.show.acronym">yes</xsl:param>
</xsl:stylesheet>
Logged In: YES
user_id=131869
Thanks - that was it.