mirror of
https://github.com/boostorg/circular_buffer.git
synced 2026-02-01 08:22:16 +00:00
21 lines
622 B
HTML
21 lines
622 B
HTML
<?xml version="1.0" encoding="iso-8859-1"?>
|
|
<!--
|
|
Helper XSL transformation making plain copy of an XML tree.
|
|
|
|
Copyright (c) 2006 Jan Gaspar
|
|
|
|
Use, modification, and distribution is subject to the Boost Software
|
|
License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
|
http://www.boost.org/LICENSE_1_0.txt)
|
|
-->
|
|
|
|
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
|
|
|
|
<xsl:template match="/ | node() | @* | comment() | processing-instruction()">
|
|
<xsl:copy>
|
|
<xsl:apply-templates select="@* | node()"/>
|
|
</xsl:copy>
|
|
</xsl:template>
|
|
|
|
</xsl:stylesheet>
|