XSL Formatter Q&A
XSLT/XSL-FO/SVG/MathML ConformanceXSLT |
|
| Q. | When I use XML+XSL, some extra blanks are output. Why? [No.2005093001] |
|---|---|
| A. |
When the indent attribute is defined like <fo:block><fo:wrapper><fo:inline>Hello</fo:inline></fo:wrapper>, world!</fo:block> For instance, if indent-value is "yes" when such FO will be generated, these are indented by the XSLT processor as follows. <fo:block>
<fo:wrapper>
<fo:inline>Hello</fo:inline>
</fo:wrapper>, world!</fo:block>
In this case, the blank enters between "Hello" and "," in the formatting result. The support of indent="yes" depends on the XSLT processor.
|