I was looking at clipping warnings generated by
examples/fo/markers/hide.fo when I noticed that white space around
fo:marker seems significant with respect to the output generated when
the marker is retrieved, e.g.:
<fo:marker>
<fo:block>
some text
</fo:block>
</fo:marker>
when retrieved produces:
<empty line>
some text
<empty line>
while:
<fo:marker><fo:block>some text</fo:block></fo:marker>
just generates:
some text
I am suspicious that this is wrong and both inputs should produce the
same output.
For a test case and its output see:
http://people.apache.org/~manuel/fop/marker_test.xml
http://people.apache.org/~manuel/fop/marker_test.pdf
Manuel