aboutsummaryrefslogtreecommitdiffstats
path: root/docs/design/understanding/renderers.xml
diff options
context:
space:
mode:
authorWilliam Victor Mote <vmote@apache.org>2002-11-30 06:52:16 +0000
committerWilliam Victor Mote <vmote@apache.org>2002-11-30 06:52:16 +0000
commit8d3f23d1924ceb5822daa3c280864fd58815f8c5 (patch)
treeb2e2fea28224021f94b512248a24c41dfadf6d3b /docs/design/understanding/renderers.xml
parent86bc5b8a5ff3e731afe25a3c13592d9fe95b87d0 (diff)
downloadxmlgraphics-fop-8d3f23d1924ceb5822daa3c280864fd58815f8c5.tar.gz
xmlgraphics-fop-8d3f23d1924ceb5822daa3c280864fd58815f8c5.zip
white-space and line-ending fixes
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@195683 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/design/understanding/renderers.xml')
-rw-r--r--docs/design/understanding/renderers.xml30
1 files changed, 15 insertions, 15 deletions
diff --git a/docs/design/understanding/renderers.xml b/docs/design/understanding/renderers.xml
index e597d118b..d3db3647c 100644
--- a/docs/design/understanding/renderers.xml
+++ b/docs/design/understanding/renderers.xml
@@ -1,13 +1,13 @@
<?xml version="1.0" standalone="no"?>
<!-- Overview -->
-<document>
- <header>
- <title>Renderers</title>
- <subtitle>All you wanted to know about the Renderers !</subtitle>
- <authors> <person name="Keiron Liddle" email="keiron@aftexsw.com"/>
- </authors>
- </header>
- <body><s1 title="Renderers">
+<document>
+ <header>
+ <title>Renderers</title>
+ <subtitle>All you wanted to know about the Renderers !</subtitle>
+ <authors> <person name="Keiron Liddle" email="keiron@aftexsw.com"/>
+ </authors>
+ </header>
+ <body><s1 title="Renderers">
<s2 title="Renderers">
@@ -18,21 +18,21 @@ in the order they appear in the document. In order to save memory it is
possble to render the pages out of order. Any page that is not reeady to
be rendered is setup by the renderer first so that it can reserve a space
or reference for when the page is ready to be rendered.</p>
-<p>The AbstractRenderer does most of the work to iterate through the area
-tree parts. This means that the most renderers simply need to implement
-the specific parts with inserting text, images and lines. The methods can
-easily be overridden to handle things in a different way or do some extra
+<p>The AbstractRenderer does most of the work to iterate through the area
+tree parts. This means that the most renderers simply need to implement
+the specific parts with inserting text, images and lines. The methods can
+easily be overridden to handle things in a different way or do some extra
processing.</p></s2>
<s2 title="Fonts">
-<p>The fonts are setup by the renderer being used. The font metrics are used
+<p>The fonts are setup by the renderer being used. The font metrics are used
during the layout process to determine the size of characters.</p>
</s2>
<s2 title="Render Context">
-<p>The render context is used by handlers. It contains information about the
-current state of the renderer. Such as the page, the position and any
+<p>The render context is used by handlers. It contains information about the
+current state of the renderer. Such as the page, the position and any
other miscellanous objects that are required to draw into the page.</p></s2>