aboutsummaryrefslogtreecommitdiffstats
path: root/docs/xml-docs/fop/limitations.xml
diff options
context:
space:
mode:
authorKeiron Liddle <keiron@apache.org>2001-09-20 10:12:38 +0000
committerKeiron Liddle <keiron@apache.org>2001-09-20 10:12:38 +0000
commit1b7e067ce9289dd31492650b13e3defc078d8711 (patch)
treef16e5083623e31c619e0f71f67194e5f9b3411f6 /docs/xml-docs/fop/limitations.xml
parent7aee8f66f53bb505a7d2c6ee7df0eee90fe8f187 (diff)
downloadxmlgraphics-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.xml63
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>&lt;fo:table></code></p>
- <p><code>&#160;&lt;fo:table-column column-width="150pt"/></code></p>
- <p><code>&#160;&lt;fo:table-column column-width="150pt"/></code></p>
- <p><code>&#160;&lt;fo:table-body font-size="10pt" font-family="sans-serif"></code></p>
- <p><code>&#160;&#160;&lt;fo:table-row></code></p>
- <p><code>&#160;&#160;&#160;&lt;fo:table-cell></code></p>
- <p><code>&#160;&#160;&#160;&#160;&lt;fo:block>text&lt;/fo:block></code></p>
- <p><code>&#160;&#160;&#160;&lt;/fo:table-cell></code></p>
- <p><code>&#160;&#160;&#160;&lt;fo:table-cell></code></p>
- <p><code>&#160;&#160;&#160;&#160;&lt;fo:block>text&lt;/fo:block></code></p>
- <p><code>&#160;&#160;&#160;&lt;/fo:table-cell></code></p>
- <p><code>&#160;&#160;&lt;/fo:table-row></code></p>
- <p><code>&#160;&#160;&lt;fo:table-row></code></p>
- <p><code>&#160;&#160;&#160;&lt;fo:table-cell></code></p>
- <p><code>&#160;&#160;&#160;&#160;&lt;fo:block>text&lt;/fo:block></code></p>
- <p><code>&#160;&#160;&#160;&lt;/fo:table-cell></code></p>
- <p><code>&#160;&#160;&#160;&lt;fo:table-cell></code></p>
- <p><code>&#160;&#160;&#160;&#160;&lt;fo:block>text&lt;/fo:block></code></p>
- <p><code>&#160;&#160;&#160;&lt;/fo:table-cell></code></p>
- <p><code>&#160;&#160;&lt;/fo:table-row></code></p>
- <p><code>&#160;&#160;&lt;fo:table-row></code></p>
- <p><code>&#160;&#160;&#160;&lt;fo:table-cell></code></p>
- <p><code>&#160;&#160;&#160;&#160;&lt;fo:block>text&lt;/fo:block></code></p>
- <p><code>&#160;&#160;&#160;&lt;/fo:table-cell></code></p>
- <p><code>&#160;&#160;&#160;&lt;fo:table-cell></code></p>
- <p><code>&#160;&#160;&#160;&#160;&lt;fo:block>text&lt;/fo:block></code></p>
- <p><code>&#160;&#160;&#160;&lt;/fo:table-cell></code></p>
- <p><code>&#160;&#160;&lt;/fo:table-row></code></p>
- <p><code>&#160;&lt;/fo:table-body></code></p>
- <p><code>&lt;/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>