xmlverbatim.xsl:
indent-elements - default: false()
Ifindent-elementsis set to true(), then a break will be output before each element. This includes both the beginning and ending tags. However, if the element contains no child elements, then the ending tag will be output on the same line as the beginning tag. For example:<Foo><Bar>sometext</Bar><Baz><Qux /></Baz></Foo>would be output as<Foo> <Bar>sometext</Bar> <Baz> <Qux /> </Baz> </Foo>In addition, each nested element will be indented a specified amount of non-breaking spaces. This is controled by theindent-incrementparameter. The default is three spaces.
xmlverbatimwrapper.xsl:select that determines which elements (together
with their descendants) should be printed. This parameter can
take a single value: a full (qualified) element name.
xmlverbatimwrapper.xsl:xmlverbwrapper<xsl:apply-templates select="/"
mode="xmlverbwrapper"> in combination with
redirecting the output to a separate document.
xmlverbatim.xsl:" will be rendered as
" only in attribute values.
As part of text nodes it appears now simply as ".
xmlverbatim.xsl:<verb:wrapper
xmlns:verb="http://informatik.hu-berlin.de/xmlverbatim">
xmlverbatimwrapper.xsl:css-stylesheet
|