mirror of
https://github.com/samba-team/samba.git
synced 2025-01-10 01:18:15 +03:00
8f8a9f0190
(This used to be commit 9f672c26d6
)
11 lines
395 B
XML
11 lines
395 B
XML
<?xml version='1.0'?>
|
|
<!-- Removes particular (unuseful for the book) elements from references -->
|
|
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
|
version="1.1">
|
|
<xsl:template match="reference/refentry/refsect1[title='VERSION' or title='AUTHOR']"/>
|
|
|
|
<xsl:template match="reference/refentry/refmeta"/>
|
|
|
|
<xsl:template match="reference/refentry/refnamediv"/>
|
|
</xsl:stylesheet>
|