diff options
author | Keiron Liddle <keiron@apache.org> | 2001-09-20 10:12:38 +0000 |
---|---|---|
committer | Keiron Liddle <keiron@apache.org> | 2001-09-20 10:12:38 +0000 |
commit | 1b7e067ce9289dd31492650b13e3defc078d8711 (patch) | |
tree | f16e5083623e31c619e0f71f67194e5f9b3411f6 /docs/xml-docs/fop/limitations.xml | |
parent | 7aee8f66f53bb505a7d2c6ee7df0eee90fe8f187 (diff) | |
download | xmlgraphics-fop-1b7e067ce9289dd31492650b13e3defc078d8711.tar.gz xmlgraphics-fop-1b7e067ce9289dd31492650b13e3defc078d8711.zip |
some small improvements to website docs
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@194470 13f79535-47bb-0310-9956-ffa450edef68
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> |