From owner-svn-doc-head@FreeBSD.ORG Sat Jul 13 21:25:15 2013 Return-Path: Delivered-To: svn-doc-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id B30F134E; Sat, 13 Jul 2013 21:25:15 +0000 (UTC) (envelope-from wblock@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id A44A5108C; Sat, 13 Jul 2013 21:25:15 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r6DLPFHt073430; Sat, 13 Jul 2013 21:25:15 GMT (envelope-from wblock@svn.freebsd.org) Received: (from wblock@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r6DLPFeJ073429; Sat, 13 Jul 2013 21:25:15 GMT (envelope-from wblock@svn.freebsd.org) Message-Id: <201307132125.r6DLPFeJ073429@svn.freebsd.org> From: Warren Block Date: Sat, 13 Jul 2013 21:25:15 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r42275 - head/en_US.ISO8859-1/books/fdp-primer/xhtml-markup X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Jul 2013 21:25:15 -0000 Author: wblock Date: Sat Jul 13 21:25:15 2013 New Revision: 42275 URL: http://svnweb.freebsd.org/changeset/doc/42275 Log: Whitespace-only fixes. Translators, please ignore. Modified: head/en_US.ISO8859-1/books/fdp-primer/xhtml-markup/chapter.xml Modified: head/en_US.ISO8859-1/books/fdp-primer/xhtml-markup/chapter.xml ============================================================================== --- head/en_US.ISO8859-1/books/fdp-primer/xhtml-markup/chapter.xml Sat Jul 13 21:12:08 2013 (r42274) +++ head/en_US.ISO8859-1/books/fdp-primer/xhtml-markup/chapter.xml Sat Jul 13 21:25:15 2013 (r42275) @@ -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. <sgmltag>blockquote</sgmltag> @@ -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. <sgmltag>pre</sgmltag> @@ -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 <sgmltag class="attribute">rowspan</sgmltag> + Using + <sgmltag class="attribute">rowspan</sgmltag> Usage: @@ -403,7 +403,8 @@ - Using <sgmltag class="attribute">colspan</sgmltag> + Using + <sgmltag class="attribute">colspan</sgmltag> Usage: @@ -424,7 +425,8 @@ Using <sgmltag class="attribute">rowspan</sgmltag> and - <sgmltag class="attribute">colspan</sgmltag> 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 <sgmltag class="starttag">a href="..."</sgmltag> + Using + <sgmltag class="starttag">a href="..."</sgmltag> 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