On 2010-08-01 03:55 , Suraj N. Kurapati wrote: > How can I re-enable the emitting of link URLs with the modern a2x? > Do I create a new *.xsl file and pass `-a stylesheet=my_manpage.xsl` > to a2x? If so, will my XSL file conflict with the default one?
I am not using a2x, but asciidoc and xsltproc. The attached manpage.xsl imports the default docbook processing for man pages and then also adds a "External References" section at the end containing all the links. This has the style of footnotes, so it does not disturb reading. HTH, Rainer -- You received this message because you are subscribed to the Google Groups "asciidoc" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/asciidoc?hl=en.
<?xml version='1.0' ?> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> <xsl:import href="http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl"/> <xsl:param name="man.endnotes.list.heading">External References</xsl:param> </xsl:stylesheet>
