diff --git a/en_US.ISO8859-1/books/fdp-primer/xhtml-markup/chapter.xml b/en_US.ISO8859-1/books/fdp-primer/xhtml-markup/chapter.xml
index f6c123b1e7..258197bc39 100644
--- a/en_US.ISO8859-1/books/fdp-primer/xhtml-markup/chapter.xml
+++ b/en_US.ISO8859-1/books/fdp-primer/xhtml-markup/chapter.xml
@@ -91,8 +91,8 @@
There are a number of XHTML
FPIs, depending upon the version, or
level of XHTML to which
- a document conforms. Most XHTML documents on the FreeBSD web
- site comply with the transitional version of
+ a document conforms. Most XHTML documents on
+ the FreeBSD web site comply with the transitional version of
XHTML 1.0.
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
@@ -173,8 +173,8 @@
Generally, an XHTML page should have
one first level heading (h1). This can
contain many second level headings (h2),
- which can in turn contain many third level headings.
- Do not leave gaps in the numbering.
+ which can in turn contain many third level headings. Do not
+ leave gaps in the numbering.
@@ -197,8 +197,7 @@
Block Quotations
A block quotation is an extended quotation from another
- document that will appear in a separate
- paragraph.
+ document that will appear in a separate paragraph.
blockquote
@@ -222,11 +221,11 @@
XHTML can present the user with three
types of lists: ordered, unordered, and definition.
- Entries in an ordered list will be
- numbered, while entries in an unordered list will be
- preceded by bullet points. Definition lists have
- two sections for each entry. The first section is the term
- being defined, and the second section is the definition.
+ Entries in an ordered list will be numbered, while entries
+ in an unordered list will be preceded by bullet points.
+ Definition lists have two sections for each entry. The first
+ section is the term being defined, and the second section is
+ the definition.
Ordered lists are indicated by the ol
element, unordered lists by the ul
@@ -303,13 +302,13 @@
Pre-formatted Text
- Pre-formatted text is shown to the user exactly as it
- is in the file. Text is shown in a fixed font.
- Multiple spaces and line breaks are shown exactly as they are
- in the file.
+ Pre-formatted text is shown to the user exactly as it is
+ in the file. Text is shown in a fixed font. Multiple spaces
+ and line breaks are shown exactly as they are in the
+ file.
- Wrap pre-formatted text in the
- pre element.
+ Wrap pre-formatted text in the pre
+ element.
pre
@@ -376,13 +375,14 @@
table
- A cell can span multiple rows and columns by adding
- the rowspan or
- colspan attributes with values for
- the number of rows or columns to be spanned.
+ A cell can span multiple rows and columns by adding the
+ rowspan or
+ colspan attributes with
+ values for the number of rows or columns to be spanned.
- Using rowspan
+ Using
+ rowspan
Usage:
@@ -403,7 +403,8 @@
- Using colspan
+ Using
+ colspan
Usage:
@@ -424,7 +425,8 @@
Using rowspan and
- colspan Together
+ colspan
+ Together
Usage:
@@ -466,14 +468,14 @@
Two levels of emphasis are available in
XHTML, em and
- strong. em is for a
+ strong. em is for a
normal level of emphasis and strong
indicates stronger emphasis.
em is typically rendered in italic
and strong is rendered in bold. This is
- not always the case, and should not be relied upon.
- According to best practices, web pages only hold structural and
+ not always the case, and should not be relied upon. According
+ to best practices, web pages only hold structural and
semantical information, and stylesheets are later applied to
them. Think of semantics, not formatting, when using these
tags.
@@ -518,14 +520,16 @@
A link points to the URL of a
document on the web. The link is indicated with
- a, and the href
- attribute contains the URL of the target
- document. The content of the element becomes the link,
- indicated to the user by showing it in
- a different color or with an underline.
+ a, and the
+ href attribute contains
+ the URL of the target document. The
+ content of the element becomes the link, indicated to the
+ user by showing it in a different color or with an
+ underline.
- Using a href="..."
+ Using
+ a href="..."
Usage:
@@ -541,11 +545,13 @@
Linking to Specific Parts of Documents
To link to a specific point within a document, that
- document must include an
- anchor at the desired point. Anchors are included by setting the
- id attribute of an element to a name.
- This example creates an anchor by setting the id attribute
- of a p element.
+ document must include an anchor at the
+ desired point. Anchors are included by setting the
+ id attribute of an
+ element to a name. This example creates an anchor by
+ setting the id
+ attribute of a p
+ element.
Creating an Anchor
@@ -556,26 +562,29 @@
in other links with the name ttsampleparatt.p
- Links to anchors are similar to plain links,
- but include a # symbol and the anchor's ID
- at the end of the URL.
+ Links to anchors are similar to plain links, but include
+ a # symbol and the anchor's
+ ID at the end of the
+ URL.
- Linking to a Named Part of a Different Document
+ Linking to a Named Part of a Different
+ Document
- The samplepara example
- is part of a document called
- foo.html. A link to that specific
- paragraph in the document is constructed in this example.
+ The samplepara example is part of a
+ document called foo.html. A link to
+ that specific paragraph in the document is constructed in
+ this example.
pMore information can be found in the
a href="foo.html#samplepara"sample paragrapha of
ttfoo.htmltt.p
- To link to a named anchor within the same
- document, omit the document's URL, and just
- use the # symbol followed by the name of the anchor.
+ To link to a named anchor within the same document, omit
+ the document's URL, and just use the
+ # symbol followed by the name of the
+ anchor.
Linking to a Named Part of the Same Document