diff options
Diffstat (limited to 'docs/xml-docs/fop/limitations.xml')
-rw-r--r-- | docs/xml-docs/fop/limitations.xml | 63 |
1 files changed, 33 insertions, 30 deletions
diff --git a/docs/xml-docs/fop/limitations.xml b/docs/xml-docs/fop/limitations.xml index fd3b1288f..c2220c3be 100644 --- a/docs/xml-docs/fop/limitations.xml +++ b/docs/xml-docs/fop/limitations.xml @@ -32,36 +32,39 @@ 2) Cells have to contain block-level FOs. They can't contain straight character data. </p> <p>A working basic example of a table looks like this: </p> - <p><code><fo:table></code></p> - <p><code> <fo:table-column column-width="150pt"/></code></p> - <p><code> <fo:table-column column-width="150pt"/></code></p> - <p><code> <fo:table-body font-size="10pt" font-family="sans-serif"></code></p> - <p><code>  <fo:table-row></code></p> - <p><code>   <fo:table-cell></code></p> - <p><code>    <fo:block>text</fo:block></code></p> - <p><code>   </fo:table-cell></code></p> - <p><code>   <fo:table-cell></code></p> - <p><code>    <fo:block>text</fo:block></code></p> - <p><code>   </fo:table-cell></code></p> - <p><code>  </fo:table-row></code></p> - <p><code>  <fo:table-row></code></p> - <p><code>   <fo:table-cell></code></p> - <p><code>    <fo:block>text</fo:block></code></p> - <p><code>   </fo:table-cell></code></p> - <p><code>   <fo:table-cell></code></p> - <p><code>    <fo:block>text</fo:block></code></p> - <p><code>   </fo:table-cell></code></p> - <p><code>  </fo:table-row></code></p> - <p><code>  <fo:table-row></code></p> - <p><code>   <fo:table-cell></code></p> - <p><code>    <fo:block>text</fo:block></code></p> - <p><code>   </fo:table-cell></code></p> - <p><code>   <fo:table-cell></code></p> - <p><code>    <fo:block>text</fo:block></code></p> - <p><code>   </fo:table-cell></code></p> - <p><code>  </fo:table-row></code></p> - <p><code> </fo:table-body></code></p> - <p><code></fo:table></code></p> +<p> + <source><![CDATA[ +<fo:table> + <fo:table-column column-width="150pt"/> + <fo:table-column column-width="150pt"/> + <fo:table-body font-size="10pt" font-family="sans-serif"> + <fo:table-row> + <fo:table-cell> + <fo:block>text</fo:block> + </fo:table-cell> + <fo:table-cell> + <fo:block>text</fo:block> + </fo:table-cell> + </fo:table-row> + <fo:table-row> + <fo:table-cell> + <fo:block>text</fo:block> + </fo:table-cell> + <fo:table-cell> + <fo:block>text</fo:block> + </fo:table-cell> + </fo:table-row> + <fo:table-row> + <fo:table-cell> + <fo:block>text</fo:block> + </fo:table-cell> + <fo:table-cell> + <fo:block>text</fo:block> + </fo:table-cell> + </fo:table-row> + </fo:table-body> +</fo:table>]]></source> +</p> </s2> |