| 1 |
<?xml version='1.0' encoding="UTF-8"?>
|
| 2 |
<!-- $Header: /home/cvsroot/gentoo/xml/htdocs/doc/en/xml-guide.xml,v 1.30 2004/05/09 12:47:28 swift Exp $ -->
|
| 3 |
<!DOCTYPE guide SYSTEM "/dtd/guide.dtd">
|
| 4 |
|
| 5 |
<guide link="/doc/en/xml-guide.xml">
|
| 6 |
<title>Gentoo Linux XML Guide</title>
|
| 7 |
|
| 8 |
<author title="Author">
|
| 9 |
<mail link="drobbins@gentoo.org">Daniel Robbins</mail>
|
| 10 |
</author>
|
| 11 |
<author title="Author"><!-- zhen@gentoo.org -->
|
| 12 |
John P. Davis
|
| 13 |
</author>
|
| 14 |
<author title="Editor">
|
| 15 |
<mail link="peesh@gentoo.org">Jorge Paulo</mail>
|
| 16 |
</author>
|
| 17 |
<author title="Editor">
|
| 18 |
<mail link="swift@gentoo.org">Sven Vermeulen</mail>
|
| 19 |
</author>
|
| 20 |
|
| 21 |
<abstract>
|
| 22 |
This guide shows you how to compose web documentation using the new lightweight
|
| 23 |
Gentoo GuideXML syntax. This syntax is the official format for Gentoo Linux
|
| 24 |
documentation, and this document itself was created using GuideXML. This guide
|
| 25 |
assumes a basic working knowledge of XML and HTML.
|
| 26 |
</abstract>
|
| 27 |
|
| 28 |
<!-- The content of this document is licensed under the CC-BY-SA license -->
|
| 29 |
<!-- See http://creativecommons.org/licenses/by-sa/1.0 -->
|
| 30 |
<license/>
|
| 31 |
|
| 32 |
<version>2.10</version>
|
| 33 |
<date>May 09, 2004</date>
|
| 34 |
|
| 35 |
<chapter>
|
| 36 |
<title>Guide basics</title>
|
| 37 |
<section>
|
| 38 |
<title>Guide XML design goals</title>
|
| 39 |
<body>
|
| 40 |
|
| 41 |
<p>
|
| 42 |
The guide XML syntax is lightweight yet expressive, so that it is easy to
|
| 43 |
learn yet also provides all the features we need for the creation of web
|
| 44 |
documentation. The number of tags is kept to a minimum -- just those we need.
|
| 45 |
This makes it easy to transform guide into other formats, such as DocBook
|
| 46 |
XML/SGML or web-ready HTML.
|
| 47 |
</p>
|
| 48 |
|
| 49 |
<p>
|
| 50 |
The goal is to make it easy to <e>create</e> and <e>transform</e> guide XML
|
| 51 |
documents.
|
| 52 |
</p>
|
| 53 |
|
| 54 |
</body>
|
| 55 |
</section>
|
| 56 |
<section>
|
| 57 |
<title>Further Resources</title>
|
| 58 |
<body>
|
| 59 |
|
| 60 |
<p>
|
| 61 |
If you are planning on contributing documentation to Gentoo, or you want to test
|
| 62 |
GuideXML, please read the <uri
|
| 63 |
link="http://www.gentoo.org/doc/en/doc-tipsntricks.xml">Tips and Tricks</uri>
|
| 64 |
which contains tips and tricks for documentation development.
|
| 65 |
</p>
|
| 66 |
|
| 67 |
</body>
|
| 68 |
</section>
|
| 69 |
</chapter>
|
| 70 |
|
| 71 |
<chapter>
|
| 72 |
<title>Guide XML</title>
|
| 73 |
<section>
|
| 74 |
<title>Basic structure</title>
|
| 75 |
<body>
|
| 76 |
|
| 77 |
<p>
|
| 78 |
Now that you know how to transform guide XML, you're ready to start learning
|
| 79 |
the GuideXML syntax. We'll start with the the initial tags used in a guide
|
| 80 |
XML document:
|
| 81 |
</p>
|
| 82 |
|
| 83 |
<pre caption="The initial part of a guide XML document">
|
| 84 |
<?xml version='1.0' encoding="UTF-8"?>
|
| 85 |
<!DOCTYPE guide SYSTEM "/dtd/guide.dtd">
|
| 86 |
<guide link="relative_link_to_your_guide">
|
| 87 |
<title><i>Gentoo Linux Documentation Guide</i></title>
|
| 88 |
<author title="<i>Chief Architect</i>">
|
| 89 |
<mail link="<i>drobbins@gentoo.org</i>"><i>Daniel Robbins</i></mail>
|
| 90 |
</author>
|
| 91 |
<author title="<i>Editor</i>">
|
| 92 |
<mail link="<i>thomasfl@gentoo.org</i>"><i>Thomas Flavel</i></mail>
|
| 93 |
</author>
|
| 94 |
|
| 95 |
<abstract>
|
| 96 |
<i>This guide shows you how to compose web documentation using
|
| 97 |
our new lightweight Gentoo GuideXML syntax. This syntax is the official
|
| 98 |
format for Gentoo Linux web documentation, and this document itself was created
|
| 99 |
using GuideXML.</i>
|
| 100 |
</abstract>
|
| 101 |
|
| 102 |
<!-- The content of this document is licensed under the CC-BY-SA license -->
|
| 103 |
<!-- See http://creativecommons.org/licenses/by-sa/1.0 -->
|
| 104 |
<license/>
|
| 105 |
|
| 106 |
<version><i>1.0</i></version>
|
| 107 |
<date><i>29 Mar 2001</i></date>
|
| 108 |
</pre>
|
| 109 |
|
| 110 |
<p>
|
| 111 |
On the first, line, we see the requisite tag that identifies this as an XML
|
| 112 |
document. Following it, there's a <c><guide></c> tag -- the entire
|
| 113 |
guide document is enclosed within a <c><guide> </guide></c> pair.
|
| 114 |
Next, there's a <c><title></c> tag, used to set the title for the entire
|
| 115 |
guide document.
|
| 116 |
</p>
|
| 117 |
|
| 118 |
<p>
|
| 119 |
Then, we come to the <c><author></c> tags, which contain information
|
| 120 |
about the various authors of the document. Each <c><author></c> tag
|
| 121 |
allows for an optional <c>title=</c> element, used to specify the author's
|
| 122 |
relationship to the document (author, co-author, editor, etc.). In this
|
| 123 |
particular example, the authors' names are enclosed in another tag -- a
|
| 124 |
<c><mail></c> tag, used to specify an email address for this particular
|
| 125 |
person. The <c><mail></c> tag is optional and can be omitted, and no
|
| 126 |
more than one <c><author></c> element is required per guide document.
|
| 127 |
</p>
|
| 128 |
|
| 129 |
<p>
|
| 130 |
Next, we come to the <c><abstract></c>, <c><version></c> and
|
| 131 |
<c><date></c> tags, used to specify a summary of the document, the
|
| 132 |
current version number, and the current version date (in DD MMM YYYY format)
|
| 133 |
respectively. This rounds out the tags that should appear at the beginning of
|
| 134 |
a guide document. Besides the <c><title></c> and <c><mail></c>
|
| 135 |
tags, these tags shouldn't appear anywhere else except immediately inside the
|
| 136 |
<c><guide></c> tag, and for consistency it's recommended (but not
|
| 137 |
required) that these tags appear before the content of the document.
|
| 138 |
</p>
|
| 139 |
|
| 140 |
<p>
|
| 141 |
Finally we have the <c><license/></c> tag, used to publish the
|
| 142 |
document under the <uri link="http://creativecommons.org/licenses/by-sa/1.0/">Creative
|
| 143 |
Commons - Attribution / Share Alike</uri> license as required by the <uri
|
| 144 |
link="/doc/en/doc-policy.xml">Documentation Policy</uri>.
|
| 145 |
</p>
|
| 146 |
|
| 147 |
</body>
|
| 148 |
</section>
|
| 149 |
<section>
|
| 150 |
<title>Chapters and sections</title>
|
| 151 |
<body>
|
| 152 |
|
| 153 |
<p>
|
| 154 |
Once the initial tags have been specified, you're ready to start adding
|
| 155 |
the structural elements of the document. Guide documents are divided into
|
| 156 |
chapters, and each chapter can hold one or more sections. Every chapter
|
| 157 |
and section has a title. Here's an example chapter with a single section,
|
| 158 |
consisting of a paragraph. If you append this XML to the XML in the <uri link="#doc_chap2_pre1">previous
|
| 159 |
excerpt</uri> and append a <c></guide></c> to the end of the file, you'll have a valid
|
| 160 |
(if minimal) guide document:
|
| 161 |
</p>
|
| 162 |
|
| 163 |
<pre>
|
| 164 |
<chapter>
|
| 165 |
<title><i>This is my chapter</i></title>
|
| 166 |
<section>
|
| 167 |
<title><i>This is section one of my chapter</i></title>
|
| 168 |
<body>
|
| 169 |
|
| 170 |
<p>
|
| 171 |
<i>This is the actual text content of my section.</i>
|
| 172 |
</p>
|
| 173 |
|
| 174 |
</body>
|
| 175 |
</section>
|
| 176 |
</chapter>
|
| 177 |
</pre>
|
| 178 |
|
| 179 |
<p>
|
| 180 |
Above, I set the chapter title by adding a child <c><title></c>
|
| 181 |
element to the <c><chapter></c> element. Then, I created a section by
|
| 182 |
adding a <c><section></c> element. If you look inside the
|
| 183 |
<c><section></c> element, you'll see that it has two child elements -- a
|
| 184 |
<c><title></c> and a <c><body></c>. While the <c><title></c>
|
| 185 |
is nothing new, the <c><body></c> is -- it contains the actual text
|
| 186 |
content of this particular section. We'll look at the tags that are allowed
|
| 187 |
inside a <c><body></c> element in a bit.
|
| 188 |
</p>
|
| 189 |
|
| 190 |
<note>
|
| 191 |
A <c><guide></c> element can contain multiple <c><chapter></c>
|
| 192 |
elements, and a <c><chapter></c> can contain multiple
|
| 193 |
<c><section></c> elements. However, a <c><section></c>
|
| 194 |
element can only contain one <c><body></c> element.
|
| 195 |
</note>
|
| 196 |
|
| 197 |
</body>
|
| 198 |
</section>
|
| 199 |
<section>
|
| 200 |
<title>An example <body></title>
|
| 201 |
<body>
|
| 202 |
|
| 203 |
<p>
|
| 204 |
Now, it's time to learn how to mark up actual content. Here's the XML code for an example <c><body></c> element:
|
| 205 |
</p>
|
| 206 |
|
| 207 |
<pre>
|
| 208 |
<p>
|
| 209 |
This is a paragraph. <path>/etc/passwd</path> is a file.
|
| 210 |
<uri>http://www.gentoo.org</uri> is my favorite website.
|
| 211 |
Type <c>ls</c> if you feel like it. I <e>really</e> want to go to sleep now.
|
| 212 |
</p>
|
| 213 |
|
| 214 |
<pre>
|
| 215 |
This is text output or code.
|
| 216 |
# <i>this is user input</i>
|
| 217 |
|
| 218 |
Make HTML/XML easier to read by using selective emphasis:
|
| 219 |
<foo><i>bar</i></foo>
|
| 220 |
|
| 221 |
<codenote>This is how to insert an inline note into the code block</codenote>
|
| 222 |
</pre>
|
| 223 |
|
| 224 |
<note>
|
| 225 |
This is a note.
|
| 226 |
</note>
|
| 227 |
|
| 228 |
<warn>
|
| 229 |
This is a warning.
|
| 230 |
</warn>
|
| 231 |
|
| 232 |
<impo>
|
| 233 |
This is important.
|
| 234 |
</impo>
|
| 235 |
</pre>
|
| 236 |
|
| 237 |
<p>
|
| 238 |
Now, here's how this <c><body></c> element is rendered:
|
| 239 |
</p>
|
| 240 |
|
| 241 |
<p>
|
| 242 |
This is a paragraph. <path>/etc/passwd</path> is a file.
|
| 243 |
<uri>http://www.gentoo.org</uri> is my favorite website.
|
| 244 |
Type <c>ls</c> if you feel like it. I <e>really</e> want to go to sleep now.
|
| 245 |
</p>
|
| 246 |
|
| 247 |
<pre>
|
| 248 |
This is text output or code.
|
| 249 |
# <i>this is user input</i>
|
| 250 |
|
| 251 |
Make HTML/XML easier to read by using selective emphasis:
|
| 252 |
<foo><i>bar</i></foo>
|
| 253 |
|
| 254 |
<codenote>This is how to insert an inline note into the code block</codenote>
|
| 255 |
</pre>
|
| 256 |
|
| 257 |
<note>
|
| 258 |
This is a note.
|
| 259 |
</note>
|
| 260 |
|
| 261 |
<warn>
|
| 262 |
This is a warning.
|
| 263 |
</warn>
|
| 264 |
|
| 265 |
<impo>
|
| 266 |
This is important.
|
| 267 |
</impo>
|
| 268 |
|
| 269 |
</body>
|
| 270 |
</section>
|
| 271 |
<section>
|
| 272 |
<title>The <body> tags</title>
|
| 273 |
<body>
|
| 274 |
|
| 275 |
<p>
|
| 276 |
We introduced a lot of new tags in the previous section -- here's what you
|
| 277 |
need to know. The <c><p></c> (paragraph), <c><pre></c> (code
|
| 278 |
block), <c><note></c>, <c><warn></c> (warning) and
|
| 279 |
<c><impo></c> (important) tags all can contain one or more lines of text.
|
| 280 |
Besides the <c><table></c> element (which we'll cover in just a bit),
|
| 281 |
these are the only tags that should appear immediately inside a
|
| 282 |
<c><body></c> element. Another thing -- these tags <e>should not</e> be
|
| 283 |
stacked -- in other words, don't put a <c><note></c> element inside a
|
| 284 |
<c><p></c> element. As you might guess, the <c><pre></c> element
|
| 285 |
preserves its whitespace exactly, making it well-suited for code excerpts.
|
| 286 |
You can also name the <c><pre></c> tag:
|
| 287 |
</p>
|
| 288 |
|
| 289 |
<pre caption = "Named <pre>">
|
| 290 |
<pre caption = "Output of uptime">
|
| 291 |
# <i>uptime</i>
|
| 292 |
16:50:47 up 164 days, 2:06, 5 users, load average: 0.23, 0.20, 0.25
|
| 293 |
</pre>
|
| 294 |
</pre>
|
| 295 |
|
| 296 |
</body>
|
| 297 |
</section>
|
| 298 |
<section>
|
| 299 |
<title><path>, <c> and <e></title>
|
| 300 |
<body>
|
| 301 |
|
| 302 |
<p>
|
| 303 |
The <c><path></c>, <c><c></c> and <c><e></c> elements can
|
| 304 |
be used inside any child <c><body></c> tag, except for
|
| 305 |
<c><pre></c>.
|
| 306 |
</p>
|
| 307 |
|
| 308 |
<p>
|
| 309 |
The <c><path></c> element is used to mark text that refers to an
|
| 310 |
<e>on-disk file</e> -- either an <e>absolute or relative path</e>, or a
|
| 311 |
<e>simple filename</e>. This element is generally rendered with a monospaced
|
| 312 |
font to offset it from the standard paragraph type.
|
| 313 |
</p>
|
| 314 |
|
| 315 |
<p>
|
| 316 |
The <c><c></c> element is used to mark up a <e>command</e> or <e>user
|
| 317 |
input</e>. Think of <c><c></c> as a way to alert the reader to something
|
| 318 |
that they can type in that will perform some kind of action. For example, all
|
| 319 |
the XML tags displayed in this document are enclosed in a <c><c></c>
|
| 320 |
element because they represent something that the user could type in that is
|
| 321 |
not a path. By using <c><c></c> elements, you'll help your readers
|
| 322 |
quickly identify commands that they need to type in. Also, because
|
| 323 |
<c><c></c> elements are already offset from regular text, <e>it is rarely
|
| 324 |
necessary to surround user input with double-quotes</e>. For example, don't
|
| 325 |
refer to a "<c><c></c>" element like I did in this sentence. Avoiding
|
| 326 |
the use of unnecessary double-quotes makes a document more readable -- and
|
| 327 |
adorable!
|
| 328 |
</p>
|
| 329 |
|
| 330 |
<p>
|
| 331 |
<c><e></c> is used to apply emphasis to a word or phrase; for example:
|
| 332 |
I <e>really</e> should use semicolons more often. As you can see, this text is
|
| 333 |
offset from the regular paragraph type for emphasis. This helps to give your
|
| 334 |
prose more <e>punch</e>!
|
| 335 |
</p>
|
| 336 |
|
| 337 |
</body>
|
| 338 |
</section>
|
| 339 |
<section>
|
| 340 |
<title><mail> and <uri></title>
|
| 341 |
<body>
|
| 342 |
|
| 343 |
<p>
|
| 344 |
We've taken a look at the <c><mail></c> tag earlier; it's used to link
|
| 345 |
some text with a particular email address, and takes the form <c><mail
|
| 346 |
link="foo@bar.com">Mr. Foo Bar</mail></c>.
|
| 347 |
</p>
|
| 348 |
|
| 349 |
<p>
|
| 350 |
The <c><uri></c> tag is used to point to files/locations on the
|
| 351 |
Internet. It has two forms -- the first can be used when you want to have the
|
| 352 |
actual URI displayed in the body text, such as this link to
|
| 353 |
<uri>http://www.gentoo.org</uri>. To create this link, I typed
|
| 354 |
<c><uri>http://www.gentoo.org</uri></c>. The alternate form is
|
| 355 |
when you want to associate a URI with some other text -- for example, <uri
|
| 356 |
link="http://www.gentoo.org">the Gentoo Linux website</uri>. To create
|
| 357 |
<e>this</e> link, I typed <c><uri link="http://www.gentoo.org">the
|
| 358 |
Gentoo Linux website</uri></c>.
|
| 359 |
</p>
|
| 360 |
|
| 361 |
</body>
|
| 362 |
</section>
|
| 363 |
<section>
|
| 364 |
<title>Figures</title>
|
| 365 |
|
| 366 |
<body>
|
| 367 |
|
| 368 |
<p>
|
| 369 |
Here's how to insert a figure into a document -- <c><figure
|
| 370 |
link="mygfx.png" short="my picture" caption="my favorite picture of all
|
| 371 |
time"/></c>. The <c>link=</c> attribute points to the actual graphic image,
|
| 372 |
the <c>short=</c> attribute specifies a short description (currently used for
|
| 373 |
the image's HTML <c>alt=</c> attribute), and a caption. Not too difficult
|
| 374 |
:) We also support the standard HTML-style <img src="foo.gif"/> tag
|
| 375 |
for adding images without captions, borders, etc.
|
| 376 |
</p>
|
| 377 |
|
| 378 |
</body>
|
| 379 |
</section>
|
| 380 |
<section>
|
| 381 |
<title>Tables and lists</title>
|
| 382 |
<body>
|
| 383 |
|
| 384 |
<p>
|
| 385 |
Guide supports a simplified table syntax similar to that of HTML. To start
|
| 386 |
a table, use a <c><table></c> tag. Start a row with a <c><tr></c>
|
| 387 |
tag. However, for inserting actual table data, we <e>don't</e> support the
|
| 388 |
HTML <td> tag; instead, use the <c><th></c> if you are inserting a
|
| 389 |
header, and <c><ti></c> if you are inserting a normal informational
|
| 390 |
block. You can use a <c><th></c> anywhere you can use a <c><ti></c>
|
| 391 |
-- there's no requirement that <c><th></c> elements appear only in the
|
| 392 |
first row. Currently, these tags don't support any attributes, but some will
|
| 393 |
be added (such as a <c>caption=</c> attribute for <c><table></c>) soon.
|
| 394 |
</p>
|
| 395 |
|
| 396 |
<p>
|
| 397 |
To create ordered or unordered lists, simply use the HTML-style
|
| 398 |
<c><ol></c>, <c><ul></c> and <c><li></c> tags. List tags
|
| 399 |
should only appear inside a <c><body></c>, <c><ul></c> or
|
| 400 |
<c><ol></c> tag.
|
| 401 |
</p>
|
| 402 |
|
| 403 |
</body>
|
| 404 |
</section>
|
| 405 |
<section>
|
| 406 |
<title>Intra-document references</title>
|
| 407 |
<body>
|
| 408 |
|
| 409 |
<p>
|
| 410 |
Guide makes it really easy to reference other parts of the document using
|
| 411 |
hyperlinks. You can create a link pointing to <uri link="#doc_chap1">Chapter
|
| 412 |
One</uri> by typing <c><uri link="#doc_chap1">Chapter
|
| 413 |
One</uri></c>. To point to <uri link="#doc_chap1_sect2">section two of
|
| 414 |
Chapter One</uri>, type <c><uri link="#doc_chap1_sect2">section two of
|
| 415 |
Chapter One</uri></c>. To refer to figure 3 in chapter 1, type <c><uri
|
| 416 |
link="doc_chap1_fig3">figure 1.3</uri></c>. Or, to refer to <uri
|
| 417 |
link="#doc_chap2_pre2">code listing 2 in chapter 2</uri>, type <c><uri
|
| 418 |
link="doc_chap2_pre2">code listing 2.2</uri></c>. We'll be
|
| 419 |
adding other auto-link abilities (such as table support) soon.
|
| 420 |
</p>
|
| 421 |
|
| 422 |
<p>
|
| 423 |
However, some guides change often and using such "counting" can lead to broken
|
| 424 |
links. In order to cope with this, you can define a name for a
|
| 425 |
<c><chapter></c> or <c><section></c> by using the <c>id</c>
|
| 426 |
attribute, and then point to that attribute, like this:
|
| 427 |
</p>
|
| 428 |
|
| 429 |
<pre caption="Using the id attribute">
|
| 430 |
<chapter id="foo">
|
| 431 |
<title>This is foo!</title>
|
| 432 |
...
|
| 433 |
<p>
|
| 434 |
More information can be found in the <uri link="#foo">foo chapter</uri>
|
| 435 |
</p>
|
| 436 |
</pre>
|
| 437 |
|
| 438 |
</body>
|
| 439 |
</section>
|
| 440 |
</chapter>
|
| 441 |
|
| 442 |
<chapter>
|
| 443 |
<title>Coding Style</title>
|
| 444 |
<section>
|
| 445 |
<title>Introduction</title>
|
| 446 |
<body>
|
| 447 |
|
| 448 |
<p>
|
| 449 |
Since all Gentoo Documentation is a joint effort and several people will
|
| 450 |
most likely change existing documentation, a coding style is needed.
|
| 451 |
A coding style contains two sections. The first one is regarding
|
| 452 |
internal coding - how the xml-tags are placed. The second one is
|
| 453 |
regarding the content - how not to confuse the reader.
|
| 454 |
</p>
|
| 455 |
|
| 456 |
<p>
|
| 457 |
Both sections are described next.
|
| 458 |
</p>
|
| 459 |
|
| 460 |
</body>
|
| 461 |
</section>
|
| 462 |
<section>
|
| 463 |
<title>Internal Coding Style</title>
|
| 464 |
<body>
|
| 465 |
|
| 466 |
<p>
|
| 467 |
<b>Newlines</b> must be placed immediately after <e>every</e>
|
| 468 |
GuideXML-tag (both opening as closing), except for:
|
| 469 |
<c><version></c>, <c><date></c>, <c><title></c>,
|
| 470 |
<c><th></c>, <c><ti></c>,
|
| 471 |
<c><li></c>, <c><i></c>, <c><e></c>,
|
| 472 |
<c><uri></c>, <c><path></c>, <c><b></c>,
|
| 473 |
<c><comment></c>, <c><codenote></c>, <c><mail></c>.
|
| 474 |
</p>
|
| 475 |
|
| 476 |
<p>
|
| 477 |
<b>Blank lines</b> must be placed immediately after <e>every</e>
|
| 478 |
<c><body></c> (opening tag only) and before <e>every</e>
|
| 479 |
<c><chapter></c>, <c><p></c>, <c><table></c>,
|
| 480 |
<c><author></c> (set), <c><pre></c>, <c><ul></c>,
|
| 481 |
<c><ol></c>, <c><warn></c>, <c><note></c> and
|
| 482 |
<c><impo></c> (opening tags only).
|
| 483 |
</p>
|
| 484 |
|
| 485 |
<p>
|
| 486 |
<b>Word-wrapping</b> must be applied at 80 characters except inside
|
| 487 |
<c><pre></c>. Only when there is no other choice can be deviated from
|
| 488 |
this rule (for instance when a URL exceeds the maximum amount of characters).
|
| 489 |
The editor must then wrap whenever the first whitespace occurs.
|
| 490 |
</p>
|
| 491 |
|
| 492 |
<p>
|
| 493 |
<b>Indentation</b> may not be used, except with the XML-constructs of which
|
| 494 |
the parent XML-tags are <c><tr></c> (from <c><table></c>),
|
| 495 |
<c><ul></c>, <c><ol></c> and <c><author></c>. If indentation
|
| 496 |
is used, it <e>must</e> be two spaces for each indentation. That means <e>no</e>
|
| 497 |
tabs and <e>not</e> more spaces.
|
| 498 |
</p>
|
| 499 |
|
| 500 |
<p>
|
| 501 |
In case word-wrapping happens in <c><ti></c>, <c><th></c> or
|
| 502 |
<c><li></c> constructs, indentation must be used for the content.
|
| 503 |
</p>
|
| 504 |
|
| 505 |
<p>
|
| 506 |
An example for indentation is:
|
| 507 |
</p>
|
| 508 |
|
| 509 |
<pre caption = "Indentation Example">
|
| 510 |
<table>
|
| 511 |
<tr>
|
| 512 |
<th>Foo</th>
|
| 513 |
<th>Bar</th>
|
| 514 |
</tr>
|
| 515 |
<tr>
|
| 516 |
<ti>This is an example for indentation.</ti>
|
| 517 |
<ti>
|
| 518 |
In case text cannot be shown within an 80-character wide line, you
|
| 519 |
must use indentation if the parent tag allows it.
|
| 520 |
</ti>
|
| 521 |
</tr>
|
| 522 |
</table>
|
| 523 |
|
| 524 |
<ul>
|
| 525 |
<li>First option</li>
|
| 526 |
<li>Second option</li>
|
| 527 |
</ul>
|
| 528 |
</pre>
|
| 529 |
|
| 530 |
<p>
|
| 531 |
<b>Attributes</b> may not have spaces in between the attribute, the
|
| 532 |
"=" mark, and the attribute value. As an example:
|
| 533 |
</p>
|
| 534 |
|
| 535 |
<pre caption="Attributes">
|
| 536 |
<comment>Wrong :</comment> <pre caption = "Attributes">
|
| 537 |
<comment>Correct:</comment> <pre caption="Attributes">
|
| 538 |
</pre>
|
| 539 |
|
| 540 |
</body>
|
| 541 |
</section>
|
| 542 |
<section>
|
| 543 |
<title>External Coding Style</title>
|
| 544 |
<body>
|
| 545 |
|
| 546 |
<p>
|
| 547 |
Inside tables (<c><table></c>) and listings (<c><ul></c> and
|
| 548 |
<c><ol></c>), periods (".") should not be used unless multiple
|
| 549 |
sentences are used. In that case, every sentence should end with a period (or
|
| 550 |
other reading marks).
|
| 551 |
</p>
|
| 552 |
|
| 553 |
<p>
|
| 554 |
Every sentence, including those inside tables and listings, should start
|
| 555 |
with a capital letter.
|
| 556 |
</p>
|
| 557 |
|
| 558 |
<pre caption="Periods and capital letters">
|
| 559 |
<ul>
|
| 560 |
<li>No period</li>
|
| 561 |
<li>With period. Multiple sentences, remember?</li>
|
| 562 |
</ul>
|
| 563 |
</pre>
|
| 564 |
|
| 565 |
<p>
|
| 566 |
Code Listings should <e>always</e> have a <c>caption</c>.
|
| 567 |
</p>
|
| 568 |
|
| 569 |
<p>
|
| 570 |
Try to use <c><uri></c> with the <c>link</c> attribute as much as
|
| 571 |
possible. In other words, the <uri link="http://www.gentoo.org">Gentoo
|
| 572 |
Website</uri> is preferred over <uri>http://www.gentoo.org</uri>.
|
| 573 |
</p>
|
| 574 |
|
| 575 |
<p>
|
| 576 |
When you comment something inside a <c><pre></c> construct, only use
|
| 577 |
<c><codenote></c> if the content is a C or C++ code snippet. Otherwise,
|
| 578 |
use <c><comment></c> and parantheses. Also place the comment <e>before</e>
|
| 579 |
the subject of the comment.
|
| 580 |
</p>
|
| 581 |
|
| 582 |
<pre caption="Comment example">
|
| 583 |
<comment>(Substitute "john" with your user name)</comment>
|
| 584 |
# <i>id john</i>
|
| 585 |
</pre>
|
| 586 |
|
| 587 |
</body>
|
| 588 |
</section>
|
| 589 |
</chapter>
|
| 590 |
|
| 591 |
<chapter>
|
| 592 |
<title>Handbook Format</title>
|
| 593 |
<section>
|
| 594 |
<title>Guide vs Book</title>
|
| 595 |
<body>
|
| 596 |
|
| 597 |
<p>
|
| 598 |
For high-volume documentation, such as the <uri
|
| 599 |
link="/doc/en/handbook/handbook-x86.xml?part=1">Installation Instructions</uri>, a
|
| 600 |
broader format was needed. We designed a GuideXML-compatible enhancement that
|
| 601 |
allows us to write modular and multi-page documentation.
|
| 602 |
</p>
|
| 603 |
|
| 604 |
</body>
|
| 605 |
</section>
|
| 606 |
<section>
|
| 607 |
<title>Main File</title>
|
| 608 |
<body>
|
| 609 |
|
| 610 |
<p>
|
| 611 |
The first change is the need for a "master" document. This document contains no
|
| 612 |
real content, but links to the individual documentation modules. The syntaxis
|
| 613 |
doesn't differ much from GuideXML:
|
| 614 |
</p>
|
| 615 |
|
| 616 |
<pre caption="Example book usage">
|
| 617 |
<?xml version='1.0' encoding='UTF-8'?>
|
| 618 |
<!DOCTYPE book SYSTEM "/dtd/book.dtd">
|
| 619 |
|
| 620 |
<<i>book</i> link="example.xml">
|
| 621 |
<title>Example Book Usage</title>
|
| 622 |
|
| 623 |
<author...>
|
| 624 |
...
|
| 625 |
</author>
|
| 626 |
|
| 627 |
<abstract>
|
| 628 |
...
|
| 629 |
</abstract>
|
| 630 |
|
| 631 |
<!-- The content of this document is licensed under the CC-BY-SA license -->
|
| 632 |
<!-- See http://creativecommons.org/licenses/by-sa/1.0 -->
|
| 633 |
<license/>
|
| 634 |
|
| 635 |
<version>...</version>
|
| 636 |
<date>...</date>
|
| 637 |
</pre>
|
| 638 |
|
| 639 |
<p>
|
| 640 |
So far no real differences (except for the <c><book></c> instead of
|
| 641 |
<c><guide></c> tag). Instead of starting with the individual
|
| 642 |
<c><chapter></c>'s, you define a <c><part></c>, which is the
|
| 643 |
equivalent of a separate part in a book:
|
| 644 |
</p>
|
| 645 |
|
| 646 |
<pre caption="Defining a part">
|
| 647 |
<part>
|
| 648 |
<title>Part One</title>
|
| 649 |
<abstract>
|
| 650 |
...
|
| 651 |
</abstract>
|
| 652 |
|
| 653 |
<comment>(Defining the several chapters)</comment>
|
| 654 |
</part>
|
| 655 |
</pre>
|
| 656 |
|
| 657 |
<p>
|
| 658 |
Each part is accompanied by a <c><title></c> and an
|
| 659 |
<c><abstract></c> which gives a small introduction to the part.
|
| 660 |
</p>
|
| 661 |
|
| 662 |
<p>
|
| 663 |
Inside each part, you define the individual <c><chapter></c>'s. Each
|
| 664 |
chapter <e>must</e> be a separate document. As a result it is no surprise that a
|
| 665 |
special tag (<c><include></c>) is added to allow including the separate
|
| 666 |
document.
|
| 667 |
</p>
|
| 668 |
|
| 669 |
<pre caption="Defining a chapter">
|
| 670 |
<chapter>
|
| 671 |
<title>Chapter One</title>
|
| 672 |
<abstract>
|
| 673 |
This is a small explanation on chapter one.
|
| 674 |
</abstract>
|
| 675 |
|
| 676 |
<include href="path/to/chapter-one.xml"/>
|
| 677 |
|
| 678 |
</chapter>
|
| 679 |
</pre>
|
| 680 |
|
| 681 |
</body>
|
| 682 |
</section>
|
| 683 |
<section>
|
| 684 |
<title>Designing the Individual Chapters</title>
|
| 685 |
<body>
|
| 686 |
|
| 687 |
<p>
|
| 688 |
The content of an individual chapter is structured as follows:
|
| 689 |
</p>
|
| 690 |
|
| 691 |
<pre caption="Chapter Syntax">
|
| 692 |
<?xml version='1.0' encoding='UTF-8'?>
|
| 693 |
<!DOCTYPE sections SYSTEM "/dtd/book.dtd">
|
| 694 |
|
| 695 |
<!-- The content of this document is licensed under the CC-BY-SA license -->
|
| 696 |
<!-- See http://creativecommons.org/licenses/by-sa/1.0 -->
|
| 697 |
|
| 698 |
<sections>
|
| 699 |
|
| 700 |
<comment>(Define the several <section> and <subsection>)</comment>
|
| 701 |
|
| 702 |
</sections>
|
| 703 |
</pre>
|
| 704 |
|
| 705 |
<p>
|
| 706 |
Inside each chapter you can define <c><section></c>'s (equivalent of
|
| 707 |
<c><chapter></c> in a Guide) and <c><subsection></c>'s (equivalent
|
| 708 |
of <c><section></c> in a Guide).
|
| 709 |
</p>
|
| 710 |
|
| 711 |
</body>
|
| 712 |
</section>
|
| 713 |
</chapter>
|
| 714 |
|
| 715 |
<chapter>
|
| 716 |
<title>Resources</title>
|
| 717 |
<section>
|
| 718 |
<title>Start writing</title>
|
| 719 |
<body>
|
| 720 |
|
| 721 |
<p>
|
| 722 |
Guide has been specially designed to be "lean and mean" so that developers
|
| 723 |
can spend more time writing documentation and less time learning the actual XML
|
| 724 |
syntax. Hopefully, this will allow developers who aren't unusually "doc-savvy"
|
| 725 |
to start writing quality Gentoo Linux documentation. If you'd like to help (or
|
| 726 |
have any questions about guide), please post a message to the <mail
|
| 727 |
link="gentoo-doc@gentoo.org">gentoo-doc mailing list</mail> stating what you'd
|
| 728 |
like to tackle. Have fun!
|
| 729 |
</p>
|
| 730 |
|
| 731 |
</body>
|
| 732 |
</section>
|
| 733 |
</chapter>
|
| 734 |
</guide>
|
| 735 |
|