gerbil 3.0.2 → 3.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,27 +1,27 @@
1
- <% $style = "border-left: thick solid salmon; padding-left: 1em;" %>
2
- <% hello "Pretentious" do %>
1
+ <% $style = "border-left: thick dotted LightGrey; padding-left: 1em;" %>
2
+ <% hello "Pretentious", 1, 2, 3 do %>
3
3
  <big>I'm</big> the very first node, oh _yes_ I am! *sneer*
4
4
 
5
- <% hello "Bashful" do %>
5
+ <% hello "Bashful", 4, 5, 6 do %>
6
6
  Hi, I... *hide*
7
7
 
8
- <% hello "Hopeful" do %>
8
+ <% hello "Hopeful", rand do %>
9
9
  *sigh*
10
10
 
11
- <% hello "Confused" do %>
11
+ <% hello "Confused", (rand * rand) do %>
12
12
  Huh?
13
13
  <% end %>
14
14
  <% end %>
15
15
 
16
- <% hello "Raving" do %>
16
+ <% hello "Raving", __FILE__ do %>
17
17
  Oh it's *on* now! You're going *down*!
18
18
  <% end %>
19
19
  <% end %>
20
20
 
21
- <% hello "Sleepy" do %>
21
+ <% hello "Sleepy", Time.now do %>
22
22
  *yawn* Just five more minutes...
23
23
 
24
- <% hello "Peaceful" do %>
24
+ <% hello "Peaceful", Dir.pwd do %>
25
25
  So _be_ happy my friend, *happy*!
26
26
 
27
27
  <%= hello "Lonely (as you can see, I have no block)" %>
@@ -1,7 +1,7 @@
1
- desc: A illustrative format.
1
+ desc: An example format.
2
2
 
3
3
  code: |
4
- # Returns a random, but pronounceable, name.
4
+ # Returns a random, yet pronounceable, name.
5
5
  def generate_name
6
6
  letters = ('a'..'z').to_a - %w[ c q w x ] # redundant sounds
7
7
  vowels = %w[a e i o u]
@@ -10,17 +10,21 @@ code: |
10
10
 
11
11
  length = 3 + rand(5)
12
12
 
13
- name = ''
14
- length.times do |i|
13
+ name = (0...length).map do |i|
14
+ # alternate between consonants and vowels
15
15
  set = sets[i % sets.length]
16
- name << set[rand(set.length)]
17
- end
16
+
17
+ # choose a random letter from the set
18
+ set[rand(set.length)]
19
+ end.join
18
20
 
19
21
  name
20
22
  end
21
23
 
22
24
  class Node
23
25
  def name
26
+ # dynamically compute (and store)
27
+ # the name of this node on demand
24
28
  @name ||= generate_name
25
29
  end
26
30
  end
@@ -31,36 +35,28 @@ nodes:
31
35
  number: true
32
36
  silent: false
33
37
  output: |
34
- <h1><%= @node.type %> #<%= @node.index %>: <%= @node.name.inspect %></h1>
38
+ <h3><%= @node.type %> #<%= @node.index %>: <%= @node.name.inspect %></h3>
39
+
35
40
  My name is <%= @node.name.inspect %> and these are my properties:
36
- <table>
37
- <tr>
38
- <th>Property</th>
39
- <th>Value</th>
40
- </tr>
41
- <tr>
42
- <td>args</td>
43
- <td><%= @node.args.inspect %></td>
44
- </tr>
45
- <tr>
46
- <td>index</td>
47
- <td><%= @node.index.inspect %></td>
48
- </tr>
49
- <tr>
50
- <td>number</td>
51
- <td><%= @node.number.inspect %></td>
52
- </tr>
53
- <tr>
54
- <td>trace</td>
55
- <td><ul><%= @node.trace.map {|s| "<li>#{s}</li>"} %></ul></td>
56
- </tr>
57
- <tr>
58
- <td>content</td>
59
- <td><%= @node.content %></td>
60
- </tr>
61
- </table>
41
+
42
+ <dl style="<%= $style %>">
43
+ <dt>args</dt>
44
+ <dd><code><%= @node.args.inspect %></code></dd>
45
+
46
+ <dt>index</dt>
47
+ <dd><code><%= @node.index.inspect %></code></dd>
48
+
49
+ <dt>number</dt>
50
+ <dd><code><%= @node.number.inspect %></code></dd>
51
+
52
+ <dt>trace</td>
53
+ <dd><pre><%= @node.trace.join("\n") %></pre></dd>
54
+
55
+ <dt>content</dt>
56
+ <dd><%= @node.content %></dd>
57
+ </dl>
62
58
 
63
59
  output: |
64
60
  Welcome to the "<%= @spec[:name] %>" format.
65
- <div style="<%= $style %>"><%= @content %></div>
61
+ <%= @content %>
66
62
  That's all folks!
@@ -28,7 +28,7 @@
28
28
  <span class="ruby-comment cmt"># redcloth wraps a single item within paragraph tags, which</span>
29
29
  <span class="ruby-comment cmt"># prevents the item's HTML from being validly injected within</span>
30
30
  <span class="ruby-comment cmt"># other block-level elements, such as headings (h1, h2, etc.)</span>
31
- <span class="ruby-identifier">html</span>.<span class="ruby-identifier">sub!</span> <span class="ruby-regexp re">%r{^&lt;p&gt;(.*)&lt;/p&gt;$}</span><span class="ruby-identifier">m</span> <span class="ruby-keyword kw">do</span> <span class="ruby-operator">|</span><span class="ruby-identifier">match</span><span class="ruby-operator">|</span>
31
+ <span class="ruby-identifier">html</span>.<span class="ruby-identifier">sub!</span> <span class="ruby-regexp re">%r{\A&lt;p&gt;(.*)&lt;/p&gt;\Z}</span><span class="ruby-identifier">m</span> <span class="ruby-keyword kw">do</span> <span class="ruby-operator">|</span><span class="ruby-identifier">match</span><span class="ruby-operator">|</span>
32
32
  <span class="ruby-identifier">payload</span> = <span class="ruby-identifier">$1</span>
33
33
 
34
34
  <span class="ruby-keyword kw">if</span> <span class="ruby-identifier">payload</span> <span class="ruby-operator">=~</span> <span class="ruby-regexp re">/&lt;p&gt;/</span>
@@ -1 +1 @@
1
- Sun, 08 Jun 2008 12:56:41 -0700
1
+ Sun, 22 Jun 2008 17:21:53 -0700
@@ -56,7 +56,7 @@
56
56
  </tr>
57
57
  <tr class="top-aligned-row">
58
58
  <td><strong>Last Update:</strong></td>
59
- <td>Sun Jun 01 09:49:27 -0700 2008</td>
59
+ <td>Sun Jun 22 12:04:14 -0700 2008</td>
60
60
  </tr>
61
61
  </table>
62
62
  </div>
@@ -56,7 +56,7 @@
56
56
  </tr>
57
57
  <tr class="top-aligned-row">
58
58
  <td><strong>Last Update:</strong></td>
59
- <td>Sun Jun 08 12:37:23 -0700 2008</td>
59
+ <td>Sun Jun 22 17:21:09 -0700 2008</td>
60
60
  </tr>
61
61
  </table>
62
62
  </div>
@@ -95,7 +95,7 @@ project information
95
95
  <tr class="top-aligned-row context-row">
96
96
  <td class="context-item-name">Gerbil</td>
97
97
  <td>=</td>
98
- <td class="context-item-value">{ :name =&gt; 'Gerbil', :version =&gt; '3.0.2', :release =&gt; '2008-06-08', :website =&gt; 'http://gerbil.rubyforge.org', :home =&gt; File.expand_path(File.join(File.dirname(__FILE__), '..'))</td>
98
+ <td class="context-item-value">{ :name =&gt; 'Gerbil', :version =&gt; '3.1.0', :release =&gt; '2008-06-22', :website =&gt; 'http://gerbil.rubyforge.org', :home =&gt; File.expand_path(File.join(File.dirname(__FILE__), '..'))</td>
99
99
  <td width="3em">&nbsp;</td>
100
100
  <td class="context-item-desc">
101
101
  project information
Binary file
@@ -2,7 +2,7 @@
2
2
  <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
3
  <svg
4
4
  xmlns:dc="http://purl.org/dc/elements/1.1/"
5
- xmlns:cc="http://web.resource.org/cc/"
5
+ xmlns:cc="http://creativecommons.org/ns#"
6
6
  xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
7
7
  xmlns:svg="http://www.w3.org/2000/svg"
8
8
  xmlns="http://www.w3.org/2000/svg"
@@ -13,15 +13,22 @@
13
13
  height="1052.3622047"
14
14
  id="svg2"
15
15
  sodipodi:version="0.32"
16
- inkscape:version="0.45.1"
16
+ inkscape:version="0.46"
17
17
  sodipodi:docbase="/home/sun/src/gerbil"
18
18
  sodipodi:docname="gerbil.svg"
19
19
  inkscape:output_extension="org.inkscape.output.svg.inkscape"
20
- inkscape:export-filename="/home/sun/src/gerbil/gerbil.png"
21
- inkscape:export-xdpi="84.379997"
22
- inkscape:export-ydpi="84.379997">
20
+ inkscape:export-filename="/home/sun/src/gerbil/doc/gerbil.png"
21
+ inkscape:export-xdpi="64.320244"
22
+ inkscape:export-ydpi="64.320244">
23
23
  <defs
24
24
  id="defs4">
25
+ <inkscape:perspective
26
+ sodipodi:type="inkscape:persp3d"
27
+ inkscape:vp_x="0 : 526.18109 : 1"
28
+ inkscape:vp_y="0 : 1000 : 0"
29
+ inkscape:vp_z="744.09448 : 526.18109 : 1"
30
+ inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
31
+ id="perspective49" />
25
32
  <linearGradient
26
33
  id="linearGradient8514">
27
34
  <stop
@@ -130,12 +137,13 @@
130
137
  inkscape:cy="566.52727"
131
138
  inkscape:document-units="px"
132
139
  inkscape:current-layer="layer1"
133
- inkscape:window-width="1918"
134
- inkscape:window-height="568"
135
- inkscape:window-x="0"
136
- inkscape:window-y="589"
140
+ inkscape:window-width="998"
141
+ inkscape:window-height="1115"
142
+ inkscape:window-x="920"
143
+ inkscape:window-y="21"
137
144
  showguides="true"
138
- inkscape:guide-bbox="true">
145
+ inkscape:guide-bbox="true"
146
+ showgrid="false">
139
147
  <sodipodi:guide
140
148
  orientation="horizontal"
141
149
  position="621"
@@ -13,22 +13,26 @@
13
13
  $logo = '<img src="gerbil.png" alt="Gerbil logo" title="Gerbil logo"/>'
14
14
  %>
15
15
 
16
- <% header_inside_below do %>
17
- "Release notes and project news":<%= log_url %> &mdash; "Subscribe !feed-icon-28x28.png!":<%= ann_url %>
18
-
19
- "Downloads":<%= pkg_url %> - obtain the newest release package.
20
-
21
- "Reference":api/index.html - API documentation for source code.
16
+ <% abstract do %>
17
+ <%# XXX: this intro paragraph is duplicated below in "Introduction" %>
18
+ Gerbil is an *extensible document generator* based on "eRuby":http://www.ruby-doc.org/docs/ProgrammingRuby/html/web.html#S2 that outputs to any format you want: <%= xref 'html', "HTML (web page)" %>, <%= xref 'latex', "LaTeX" %>, <%= xref "man", "UNIX man page" %>, <%= xref 'text', 'plain text' %>, <%= xref "HelloWorld", "your own custom format" %>, and so on.
22
19
 
23
- "Developer feed":<%= dev_url %> - news about repository commits.
20
+ <% paragraph "Resources" do %>
21
+ * "Releases":<%= log_url %> - release notes and project news.
22
+ "!feed-icon-28x28.png(RSS feed)!":<%= ann_url %>
23
+ * "Downloads":<%= pkg_url %> - obtain the newest release package.
24
+ * "Reference":api/index.html - API documentation for source code.
25
+ * "Source code":<%= src_url %> - obtain via "Darcs 2":http://darcs.net or browse online.
26
+ "!feed-icon-28x28.png(RSS feed)!":<%= dev_url %>
24
27
 
25
- To get help or provide feedback, simply <%= xref "License", "contact the author" %>.
28
+ To get help or provide feedback, simply <%= xref "License", "contact the author" %>.
29
+ <% end %>
26
30
  <% end %>
27
31
 
28
32
  <% chapter "Introduction" do %>
29
33
  Gerbil is an *extensible document generator* based on "eRuby":http://www.ruby-doc.org/docs/ProgrammingRuby/html/web.html#S2 that outputs to any format you want: <%= xref 'html', "HTML (web page)" %>, <%= xref 'latex', "LaTeX" %>, <%= xref "man", "UNIX man page" %>, <%= xref 'text', 'plain text' %>, <%= xref "HelloWorld", "your own custom format" %>, and so on.
30
34
 
31
- Gerbil is *lighter* and more *flexible* than "DocBook":http://www.docbook.org, "Deplate":http://deplate.sourceforge.net, and "SiSU":http://www.jus.uio.no/sisu/SiSU/ because it is small, fast, and lets you <%= xref "HelloWorld", "define your own custom format" %>. Furthermore, Gerbil is *scriptable* unlike raw text generators such as "AsciiDoc":http://www.methods.co.nz/asciidoc/, "txt2tags":http://txt2tags.sourceforge.net, and "Grutatxt":http://www.triptico.com/software/grutatxt.html because it lets you inject Ruby code directly into your documents for dynamic content generation.
35
+ Gerbil is *light* and *flexible* against "DocBook":http://www.docbook.org, "Deplate":http://deplate.sourceforge.net, and "SiSU":http://www.jus.uio.no/sisu/SiSU/ because it is _tiny_ (less than 200 lines!) and it lets you <%= xref "HelloWorld", "define your own custom format" %>. Furthermore, Gerbil is *scriptable* unlike raw text generators such as "AsciiDoc":http://www.methods.co.nz/asciidoc/, "txt2tags":http://txt2tags.sourceforge.net, and "Grutatxt":http://www.triptico.com/software/grutatxt.html because it lets you inject Ruby code directly into your documents for *dynamic content generation*.
32
36
 
33
37
  Gerbil is *open-source software* (see <%= xref "License" %>) so feel free to contribute your improvements and discuss your ideas <%= xref "License", "with the author" %>. You can obtain the source code from the project "Darcs":http://darcs.net repository by running the following command:
34
38
 
@@ -37,7 +41,8 @@
37
41
  In addition, you can monitor for changes to the above repository by subscribing to "this news feed":<%= dev_url %>.
38
42
 
39
43
  <% note "See the source of this guide" do %>
40
- Did you know that this user guide was generated by Gerbil? Here is "the source document":guide.erb to prove it!
44
+ Did you know that this user guide was generated by Gerbil?
45
+ Here is "the source document":guide.erb to prove it!
41
46
  <% end %>
42
47
 
43
48
  <% section "Features" do %>
@@ -432,12 +437,12 @@
432
437
 
433
438
  <% chapter "Nodes", "html.nodes" do %>
434
439
  Unless otherwise noted, all nodes defined by the HTML format accept two arguments, in this order:
435
- # a title or name for the node
436
- # a unique identifier for the node
440
+ # a required *title* for the node
441
+ # an optional *unique identifier* for the node
437
442
 
438
443
  The second argument is used by the cross-referencing nodes (see <%= xref "html.nodes.xref" %> and <%= xref "html.nodes.cite" %>), which allow you to refer to another node in the document by its unique identifier.
439
444
 
440
- Furthermore, node definitions in the HTML format have two additional parameters:
445
+ Furthermore, <%= xref "SpecFile.nodes", "node definitions" %> in the HTML format have two additional parameters:
441
446
 
442
447
  |_. Parameter |_. Type |_. Description |
443
448
  | toc | Boolean | Include this node in the *Table of Contents* (TOC)? |
@@ -461,7 +466,7 @@
461
466
  <% section "xref", "html.nodes.xref" do %>
462
467
  A cross-reference; a hyperlink that takes you to any node in the document.
463
468
 
464
- The first argument of this node is either the unique identifier of the node you wish to cross-reference. If no nodes in the document have the given identifier, then the titles of all nodes in the document are searched. If even that fails, then an error will be raised.
469
+ The first argument of this node is either the unique identifier or the user-defined title of the node you wish to cross-reference. If no nodes in the document have the given identifier or user-defined title, then an error will be raised.
465
470
 
466
471
  The second argument of this node overrides the default link text of the cross-reference.
467
472
 
@@ -480,13 +485,13 @@
480
485
  <% end %>
481
486
 
482
487
  <% section "Organization" do %>
483
- The nodes described in this section are meant to help organize the document's content logically.
488
+ The nodes described in this section are meant to help organize the document's content logically. Based on how deeply these nodes are nested in the document, their heading will be larger (shallow depth) or smaller (deep depth).
484
489
 
485
490
  <% section "part", "html.nodes.part" do %>
486
491
  A collection of chapters.
487
492
 
488
493
  <% part "An example" do %>
489
- This is what a *part* node appears like.
494
+ This is how a *part* node appears.
490
495
  <% end %>
491
496
  <% end %>
492
497
 
@@ -494,7 +499,7 @@
494
499
  A collection of sections.
495
500
 
496
501
  <% chapter "An example" do %>
497
- This is what a *chapter* node appears like.
502
+ This is how a *chapter* node appears.
498
503
  <% end %>
499
504
  <% end %>
500
505
 
@@ -502,7 +507,7 @@
502
507
  A collection of paragraphs about a particular topic.
503
508
 
504
509
  <% section "An example" do %>
505
- This is what a *section* node appears like.
510
+ This is how a *section* node appears.
506
511
  <% end %>
507
512
  <% end %>
508
513
 
@@ -510,7 +515,7 @@
510
515
  A collection of sentences about a particular idea.
511
516
 
512
517
  <% paragraph "An example" do %>
513
- This is what a *paragraph* node appears like.
518
+ This is how a *paragraph* node appears. Notice that there is no LaTeX-style index number in the heading of this *paragraph* node.
514
519
  <% end %>
515
520
  <% end %>
516
521
  <% end %>
@@ -528,7 +533,7 @@
528
533
  Use a *warning* node when "data loss could occur if you follow the procedure being described." <%= cite "KDE.admonitions" %>
529
534
 
530
535
  <% warning "An example" do %>
531
- This is what a *warning* node appears like.
536
+ This is how a *warning* node appears.
532
537
  <% end %>
533
538
  <% end %>
534
539
 
@@ -536,7 +541,7 @@
536
541
  bq. A note of caution. Use this for example when the reader may lose easily recovered or replaceable information (e.g. user settings), or when they could cause data loss if they don't correctly follow the procedure being outlined. <%= cite "KDE.admonitions" %>
537
542
 
538
543
  <% caution "An example" do %>
539
- This is what a *caution* node appears like.
544
+ This is how a *caution* node appears.
540
545
  <% end %>
541
546
  <% end %>
542
547
 
@@ -546,7 +551,7 @@
546
551
  bq. When there is no danger of data loss, but you wish to make clear to the reader a consequence that isn't immediately obvious (e.g. when changing the font for one instance of a program also changes the default setting, and this isn't clear from the GUI.) <%= cite "KDE.admonitions" %>
547
552
 
548
553
  <% important "An example" do %>
549
- This is what a *important* node appears like.
554
+ This is how a *important* node appears.
550
555
  <% end %>
551
556
  <% end %>
552
557
 
@@ -556,7 +561,7 @@
556
561
  bq. Information the user should be aware of, but is peripheral to the actual task being described. <%= cite "KDE.admonitions" %>
557
562
 
558
563
  <% note "An example" do %>
559
- This is what a *note* node appears like.
564
+ This is how a *note* node appears.
560
565
  <% end %>
561
566
  <% end %>
562
567
 
@@ -566,7 +571,7 @@
566
571
  bq. When you're giving a hint to make things easier or more productive for the reader. <%= cite "KDE.admonitions" %>
567
572
 
568
573
  <% tip "An example" do %>
569
- This is what a *tip* node appears like.
574
+ This is how a *tip* node appears.
570
575
  <% end %>
571
576
  <% end %>
572
577
  <% end %>
@@ -576,7 +581,7 @@
576
581
  A diagram, sketch, image, or illustration; something that visually depicts an idea or thought.
577
582
 
578
583
  <% figure "An example" do %>
579
- This is what a *figure* node appears like.
584
+ This is how a *figure* node appears.
580
585
  <% end %>
581
586
  <% end %>
582
587
 
@@ -584,7 +589,7 @@
584
589
  Information (typically measurement data) represented in tabular form for easy reading, comparison, and analysis.
585
590
 
586
591
  <% table "An example" do %>
587
- This is what a *table* node appears like.
592
+ This is how a *table* node appears.
588
593
  <% end %>
589
594
  <% end %>
590
595
 
@@ -592,7 +597,7 @@
592
597
  A sample application of an idea or thought.
593
598
 
594
599
  <% example "An example" do %>
595
- This is what a *example* node appears like.
600
+ This is how a *example* node appears.
596
601
  <% end %>
597
602
  <% end %>
598
603
 
@@ -600,7 +605,7 @@
600
605
  A mathematical equation or formula.
601
606
 
602
607
  <% equation "An example" do %>
603
- This is what a *equation* node appears like.
608
+ This is how a *equation* node appears.
604
609
  <% end %>
605
610
  <% end %>
606
611
 
@@ -608,7 +613,7 @@
608
613
  An outline; a series of steps outlining some kind of process.
609
614
 
610
615
  <% procedure "An example" do %>
611
- This is what a *procedure* node appears like.
616
+ This is how a *procedure* node appears.
612
617
  <% end %>
613
618
  <% end %>
614
619
  <% end %>
@@ -622,11 +627,11 @@
622
627
  If you wish to cite a certain source in several places in your document, start by creating a *reference* node first and then use a *cite* node (see <%= xref "html.nodes.cite" %>) to perform the citation.
623
628
 
624
629
  <% paragraph "An example" do %>
625
- See <%= xref 'html.nodes.reference.example' %> for an example of what a *reference* node appears like.
630
+ See <%= xref 'html.nodes.reference.example' %> for an example of how a *reference* node appears.
626
631
  <% end %>
627
632
 
628
633
  <% reference 'html.nodes.reference.example' do %>
629
- This is what a *reference* node appears like.
634
+ This is how a *reference* node appears.
630
635
  <% end %>
631
636
  <% end %>
632
637
 
@@ -1,14 +1,51 @@
1
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2
- <html>
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
+ <html xmlns="http://www.w3.org/1999/xhtml">
3
4
  <head>
4
5
  <meta http-equiv="content-type" content="text/html; charset=utf-8"/>
5
- <meta name="date" content="08 June 2008"/>
6
+ <meta name="date" content="22 June 2008"/>
6
7
  <meta name="author" content="Suraj N. Kurapati"/>
7
- <meta name="generator" content="Gerbil 3.0.2"/>
8
+ <meta name="generator" content="Gerbil 3.1.0"/>
8
9
  <link rel="alternate" type="application/rss+xml" href="http://gerbil.rubyforge.org/ann"/>
9
- <title>Gerbil 3.0.2 user guide</title>
10
+ <title>Gerbil 3.1.0 user guide</title>
11
+
12
+ <style type="text/css" media="all">
13
+ <!--
14
+ .icon-note {
15
+ display: list-item;
16
+ list-style-image: url(data:image/png;base64,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);
17
+ list-style-position: inside;
18
+ }
19
+ .icon-warning {
20
+ display: list-item;
21
+ list-style-image: url(data:image/png;base64,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);
22
+ list-style-position: inside;
23
+ }
24
+ .icon-caution {
25
+ display: list-item;
26
+ list-style-image: url(data:image/png;base64,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);
27
+ list-style-position: inside;
28
+ }
29
+ .icon-important {
30
+ display: list-item;
31
+ list-style-image: url(data:image/png;base64,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);
32
+ list-style-position: inside;
33
+ }
34
+ .icon-note {
35
+ display: list-item;
36
+ list-style-image: url(data:image/png;base64,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);
37
+ list-style-position: inside;
38
+ }
39
+ .icon-tip {
40
+ display: list-item;
41
+ list-style-image: url(data:image/png;base64,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);
42
+ list-style-position: inside;
43
+ }
44
+ -->
45
+ </style>
10
46
 
11
47
  <style type="text/css" media="screen">
48
+ <!--
12
49
  body
13
50
  {
14
51
  color : #000000;
@@ -25,6 +62,70 @@
25
62
  font-family : Cambria, Georgia, serif;
26
63
  }
27
64
 
65
+ blockquote
66
+ {
67
+ margin : 1em;
68
+ border : 5px dotted #ddd;
69
+ padding : 1em;
70
+ }
71
+
72
+ hr
73
+ {
74
+ height : 0;
75
+ border : 0;
76
+ border-top : 2px solid #FF0000;
77
+ }
78
+
79
+ /* source code */
80
+
81
+ tt,
82
+ code,
83
+ pre
84
+ {
85
+ font-family : Consolas, "Lucida Console", monospace;
86
+ }
87
+
88
+ tt
89
+ {
90
+ font-weight : bold;
91
+ color : #A52A2A;
92
+ background-color : #FFFAF0;
93
+ }
94
+
95
+ /* output of the syntax coloring library */
96
+ .code
97
+ {
98
+ background-color : #FFFFF0;
99
+ }
100
+
101
+ pre
102
+ {
103
+ cursor : text;
104
+ line-height : normal;
105
+ border : 1px dashed #C0C0C0;
106
+ background-color : #F5FFDF;
107
+ padding : 1em;
108
+ overflow : auto;
109
+ }
110
+
111
+ /* hyperlinks */
112
+
113
+ a > img
114
+ {
115
+ border : none;
116
+ }
117
+
118
+ a img
119
+ {
120
+ _border : none; /* for IE6 */
121
+ }
122
+
123
+ a.here:link,
124
+ a.here:visited
125
+ {
126
+ color : #000000;
127
+ }
128
+
28
129
  /* lists */
29
130
 
30
131
  #content li:first-child
@@ -106,7 +207,7 @@
106
207
 
107
208
  table
108
209
  {
109
- border : none;
210
+ border-collapse : collapse; /* no spacing between cell borders */
110
211
  margin : auto; /* center horizontally */
111
212
  margin-top : 1em;
112
213
  }
@@ -115,7 +216,7 @@
115
216
  td
116
217
  {
117
218
  padding : 1em;
118
- border : 1px solid #C0C0C0;
219
+ border : 1px solid #bbb;
119
220
  vertical-align : top;
120
221
  background-color : inherit;
121
222
  }
@@ -127,6 +228,14 @@
127
228
 
128
229
  /* document structure */
129
230
 
231
+ .nav
232
+ {
233
+ text-align : center;
234
+ border-bottom : thick dotted #DCDCDC;
235
+ padding-bottom : 1em;
236
+ margin-bottom : 4em;
237
+ }
238
+
130
239
  #header
131
240
  {
132
241
  text-align : center;
@@ -158,34 +267,34 @@
158
267
  margin-top : 4em;
159
268
  }
160
269
 
161
- #abstract
270
+ #Abstract
162
271
  {
163
272
  margin-bottom : 5em;
164
273
  }
165
274
 
166
- #toc li
275
+ #Contents li
167
276
  {
168
277
  list-style-type : none;
169
278
  }
170
279
 
171
- #toc li ul
280
+ #Contents li ul
172
281
  {
173
282
  padding-bottom : 1em;
174
283
  border-left : thick solid #F5F5F5;
175
284
  _border-left : none; /* for IE6 */
176
285
  }
177
286
 
178
- #toc li ul:hover
287
+ #Contents li ul:hover
179
288
  {
180
289
  border-color : #DCDCDC;
181
290
  }
182
291
 
183
- #toc > ul
292
+ #Contents > ul
184
293
  {
185
294
  padding-left : 1em;
186
295
  }
187
296
 
188
- #references
297
+ #References
189
298
  {
190
299
  margin-top : 5em;
191
300
  }
@@ -197,6 +306,11 @@
197
306
  text-align : center;
198
307
  }
199
308
 
309
+ #footer-credits
310
+ {
311
+ margin-top : 2em;
312
+ }
313
+
200
314
  /* document nodes */
201
315
 
202
316
  .part > .title,
@@ -310,19 +424,62 @@
310
424
 
311
425
  body
312
426
  {
313
- margin : auto;
314
- padding : 0.5em;
315
- max-width : 36em;
427
+ margin : auto;
428
+ padding : 0.5em;
429
+ max-width : 36em;
430
+ }
431
+
432
+ /* hyperlinks */
433
+
434
+ a:link
435
+ {
436
+ color : #0000FF;
437
+ text-decoration : none;
438
+ }
439
+
440
+ a:visited
441
+ {
442
+ color : #800080;
443
+ text-decoration : none;
444
+ }
445
+
446
+ a:hover
447
+ {
448
+ color : #FF0000;
449
+ text-decoration : underline;
450
+ }
451
+
452
+ a:target
453
+ {
454
+ color : #FF0000;
455
+ font-weight : bold;
456
+ }
457
+
458
+ -->
459
+ </style>
460
+ <style type="text/css" media="print">
461
+ <!--
462
+ body
463
+ {
464
+ color : #000000;
465
+ background-color : #FFFFFF;
466
+ line-height : 1.5em;
467
+ font-family : Calibri, Verdana, sans-serif;
316
468
  }
317
469
 
318
470
  /* emphasis */
319
471
 
472
+ em,
473
+ blockquote
474
+ {
475
+ font-family : Cambria, Georgia, serif;
476
+ }
477
+
320
478
  blockquote
321
479
  {
322
480
  margin : 1em;
323
- border : 5px dotted #C0C0C0;
481
+ border : 5px dotted #ddd;
324
482
  padding : 1em;
325
- color : #444;
326
483
  }
327
484
 
328
485
  hr
@@ -364,22 +521,6 @@
364
521
  overflow : auto;
365
522
  }
366
523
 
367
- /*
368
- pre:hover
369
- {
370
- border : none;
371
- position : fixed;
372
- z-index : 1;
373
- margin : 0;
374
- top : 0;
375
- left : 0;
376
- right : 0;
377
- bottom : 0;
378
- overflow : auto;
379
- cursor : text;
380
- }
381
- */
382
-
383
524
  /* hyperlinks */
384
525
 
385
526
  a > img
@@ -387,53 +528,15 @@
387
528
  border : none;
388
529
  }
389
530
 
390
- a:link
391
- {
392
- color : #0000FF;
393
- text-decoration : none;
394
- }
395
-
396
- a:visited
531
+ a img
397
532
  {
398
- color : #9400D3;
399
- text-decoration : none;
533
+ _border : none; /* for IE6 */
400
534
  }
401
535
 
402
- a:hover
536
+ a.here:link,
537
+ a.here:visited
403
538
  {
404
- color : #FF0000;
405
- text-decoration : underline;
406
- }
407
-
408
- a:target
409
- {
410
- color : #FF0000;
411
- font-weight : bold;
412
- }
413
-
414
- a.toc:link,
415
- a.toc:visited
416
- {
417
- text-decoration : none;
418
- z-index : 1;
419
- }
420
-
421
- </style>
422
- <style type="text/css" media="print">
423
- body
424
- {
425
- color : #000000;
426
- background-color : #FFFFFF;
427
- line-height : 1.5em;
428
- font-family : Calibri, Verdana, sans-serif;
429
- }
430
-
431
- /* emphasis */
432
-
433
- em,
434
- blockquote
435
- {
436
- font-family : Cambria, Georgia, serif;
539
+ color : #000000;
437
540
  }
438
541
 
439
542
  /* lists */
@@ -517,7 +620,7 @@
517
620
 
518
621
  table
519
622
  {
520
- border : none;
623
+ border-collapse : collapse; /* no spacing between cell borders */
521
624
  margin : auto; /* center horizontally */
522
625
  margin-top : 1em;
523
626
  }
@@ -526,7 +629,7 @@
526
629
  td
527
630
  {
528
631
  padding : 1em;
529
- border : 1px solid #C0C0C0;
632
+ border : 1px solid #bbb;
530
633
  vertical-align : top;
531
634
  background-color : inherit;
532
635
  }
@@ -538,6 +641,14 @@
538
641
 
539
642
  /* document structure */
540
643
 
644
+ .nav
645
+ {
646
+ text-align : center;
647
+ border-bottom : thick dotted #DCDCDC;
648
+ padding-bottom : 1em;
649
+ margin-bottom : 4em;
650
+ }
651
+
541
652
  #header
542
653
  {
543
654
  text-align : center;
@@ -569,34 +680,34 @@
569
680
  margin-top : 4em;
570
681
  }
571
682
 
572
- #abstract
683
+ #Abstract
573
684
  {
574
685
  margin-bottom : 5em;
575
686
  }
576
687
 
577
- #toc li
688
+ #Contents li
578
689
  {
579
690
  list-style-type : none;
580
691
  }
581
692
 
582
- #toc li ul
693
+ #Contents li ul
583
694
  {
584
695
  padding-bottom : 1em;
585
696
  border-left : thick solid #F5F5F5;
586
697
  _border-left : none; /* for IE6 */
587
698
  }
588
699
 
589
- #toc li ul:hover
700
+ #Contents li ul:hover
590
701
  {
591
702
  border-color : #DCDCDC;
592
703
  }
593
704
 
594
- #toc > ul
705
+ #Contents > ul
595
706
  {
596
707
  padding-left : 1em;
597
708
  }
598
709
 
599
- #references
710
+ #References
600
711
  {
601
712
  margin-top : 5em;
602
713
  }
@@ -608,6 +719,11 @@
608
719
  text-align : center;
609
720
  }
610
721
 
722
+ #footer-credits
723
+ {
724
+ margin-top : 2em;
725
+ }
726
+
611
727
  /* document nodes */
612
728
 
613
729
  .part > .title,
@@ -723,17 +839,15 @@
723
839
 
724
840
  tt
725
841
  {
726
- color : inherit;
727
- background-color : inherit;
728
- font-weight : normal;
842
+ background-color : inherit;
843
+ font-weight : normal;
729
844
  }
730
845
 
731
846
  pre,
732
847
  .code
733
848
  {
734
- border : none;
735
- overflow : visible;
736
- background-color : inherit;
849
+ border : none;
850
+ background-color : inherit;
737
851
  }
738
852
 
739
853
  /* headings */
@@ -745,56 +859,63 @@
745
859
  h5,
746
860
  h6
747
861
  {
748
- font-weight : normal;
862
+ font-weight : normal;
749
863
  }
750
864
 
751
865
  /* hyperlinks */
752
866
 
867
+ /* blend all hyperlinks with normal text */
753
868
  a:link,
754
- a:visited,
755
- a:active
869
+ a:visited
756
870
  {
757
- color : #0000FF;
758
- font-weight : bold;
759
- text-decoration : underline;
871
+ color : #000000;
872
+ text-decoration : none;
760
873
  }
761
874
 
762
- a:after
875
+ /* emphasize external and cross-reference hyperlinks */
876
+ a:not([href^="#"]):link,
877
+ a:not([href^="#"]):visited,
878
+ a.xref[title]:link,
879
+ a.xref[title]:visited
763
880
  {
764
- content : " " attr(href);
765
- font-family : Consolas, "Lucida Console", monospace;
766
- font-weight : normal;
767
- font-size : 90%;
881
+ color : #0000FF;
882
+ text-decoration : underline;
883
+ font-weight : bolder;
768
884
  }
769
885
 
770
- a[href^="#"]:after
886
+ /* show URL of destination for external hyperlinks */
887
+ a:not([href^="#"]):after
771
888
  {
772
- content : "";
889
+ content : " " attr(href);
890
+ font-family : Consolas, "Lucida Console", monospace;
773
891
  }
774
892
 
775
- a[href^="#"]
893
+ /* show name of destination for cross-references */
894
+ a.xref[title]:after
776
895
  {
777
- color : #A52A2A;
778
- font-weight : lighter;
779
- text-decoration : none;
780
- font-style : italic;
896
+ content : " " attr(title);
781
897
  }
782
898
 
783
- a.toc:link,
784
- a.toc:visited
899
+ a:after
785
900
  {
786
- color : inherit;
787
- .color : #000000; /* for IE6 and IE7 */
788
- font-weight : inherit;
789
- text-decoration : none;
790
- font-style : normal;
901
+ font-weight : normal;
902
+ font-size : smaller;
791
903
  }
792
904
 
793
905
  /* document structure */
794
906
 
907
+ .nav,
795
908
  #lof
796
909
  {
797
- display : none;
910
+ display : none;
911
+ }
912
+
913
+ #Contents,
914
+ .part,
915
+ .chapter,
916
+ #References
917
+ {
918
+ page-break-before : always;
798
919
  }
799
920
 
800
921
  /* document nodes */
@@ -802,66 +923,97 @@
802
923
  .part > .title > big,
803
924
  .chapter > .title > big
804
925
  {
805
- padding-bottom : 0.5em;
926
+ padding-bottom : 0.5em;
806
927
  }
807
928
 
808
929
  .part .title big,
809
930
  .chapter .title big
810
931
  {
811
- _padding-bottom : 0.5em; /* for IE6 */
932
+ _padding-bottom : 0.5em; /* for IE6 */
812
933
  }
813
934
 
935
+ -->
814
936
  </style>
815
937
  </head>
816
938
  <body>
939
+ <div class="nav">
940
+ <a href="#Abstract">Abstract</a> &middot; <a href="#Contents">Contents</a> &middot; <a href="#Cautions">Cautions</a> &middot; <a href="#Equations">Equations</a> &middot; <a href="#Examples">Examples</a> &middot; <a href="#Figures">Figures</a> &middot; <a href="#Importants">Importants</a> &middot; <a href="#Notes">Notes</a> &middot; <a href="#Procedures">Procedures</a> &middot; <a href="#Tables">Tables</a> &middot; <a href="#Tips">Tips</a> &middot; <a href="#Warnings">Warnings</a> &middot; <a href="#References">References</a>
941
+ </div>
942
+
943
+ <br style="display: none"/>
944
+ <hr style="display: none"/>
945
+ <br style="display: none"/>
946
+
817
947
 
818
948
  <div id="header">
819
949
 
820
950
  <img src="gerbil.png" alt="Gerbil logo" title="Gerbil logo"/>
821
- <h1 class="title">Gerbil 3.0.2 user guide</h1>
951
+ <h1 class="title"><a class="here" href="#">Gerbil 3.1.0 user guide</a></h1>
822
952
  <h2 class="authors"><a href="http://snk.rubyforge.org">Suraj N. Kurapati</a></h2>
823
- <h3 class="date">08 June 2008</h3>
824
- <div class="header_inside_below"><p><a href="http://gerbil.rubyforge.org/log">Release notes and project news</a> &mdash; <a href="http://gerbil.rubyforge.org/ann">Subscribe <img src="feed-icon-28x28.png" alt="" /></a></p>
825
-
953
+ <h3 class="date">22 June 2008</h3>
954
+
955
+ </div>
956
+
826
957
 
827
- <p><a href="http://gerbil.rubyforge.org/pkg">Downloads</a> &#8211; obtain the newest release package.</p>
958
+ <div id="Abstract">
959
+ <h1 class="title"><a class="here" href="#Abstract">Abstract</a></h1>
960
+ <div class="content"><p>Gerbil is an <strong>extensible document generator</strong> based on <a href="http://www.ruby-doc.org/docs/ProgrammingRuby/html/web.html#S2">eRuby</a> that outputs to any format you want: <a class="xref" href="#html" title="Chapter 5.1. HTML">HTML (web page)</a>, <a class="xref" href="#latex" title="Chapter 5.3. LaTeX">LaTeX</a>, <a class="xref" href="#man" title="Chapter 5.4. UNIX man page">UNIX man page</a>, <a class="xref" href="#text" title="Chapter 5.2. Plain text">plain text</a>, <a class="xref" href="#HelloWorld" title="Section 3.2.3. Creating your own custom format">your own custom format</a>, and so on.</p>
828
961
 
829
962
 
830
- <p><a href="api/index.html">Reference</a> &#8211; API documentation for source code.</p>
963
+ <p><div class="paragraph">
964
+ <p class="title" id="Resources"><a class="here" href="#Resources">Resources</a></p>
965
+ <div class="content"><ul>
966
+ <li><a href="http://gerbil.rubyforge.org/log">Releases</a> &#8211; release notes and project news.
967
+ <a href="http://gerbil.rubyforge.org/ann"><img src="feed-icon-28x28.png" title="RSS feed" alt="RSS feed" /></a></li>
968
+ <li><a href="http://gerbil.rubyforge.org/pkg">Downloads</a> &#8211; obtain the newest release package.</li>
969
+ <li><a href="api/index.html">Reference</a> &#8211; API documentation for source code.</li>
970
+ <li><a href="http://gerbil.rubyforge.org/src">Source code</a> &#8211; obtain via <a href="http://darcs.net">Darcs 2</a> or browse online.
971
+ <a href="http://gerbil.rubyforge.org/dev"><img src="feed-icon-28x28.png" title="RSS feed" alt="RSS feed" /></a></li>
972
+ </ul>
831
973
 
832
974
 
833
- <p><a href="http://gerbil.rubyforge.org/dev">Developer feed</a> &#8211; news about repository commits.</p>
975
+ <p>To get help or provide feedback, simply <a class="xref" href="#License" title="Section 1.2. License">contact the author</a>.</p></div>
976
+ </div></p></div>
977
+ </div>
834
978
 
979
+ <br style="display: none"/>
980
+ <hr style="display: none"/>
981
+ <br style="display: none"/>
835
982
 
836
- <p>To get help or provide feedback, simply <a class="xref" href="#License">contact the author</a>.</p></div>
837
- </div>
838
-
983
+ <div id="Contents">
984
+ <h1 class="title"><a class="here" href="#Contents">Contents</a></h1>
985
+ <ul>
986
+ <li>1&nbsp;&nbsp;<a id="a-606474808" href="#Introduction">Introduction</a><ul><li>1.1&nbsp;&nbsp;<a id="a-606507708" href="#Features">Features</a></li><li>1.2&nbsp;&nbsp;<a id="a-606517248" href="#License">License</a></li><li>1.3&nbsp;&nbsp;<a id="a-606523738" href="#Reviews">Reviews</a></li></ul></li><li>2&nbsp;&nbsp;<a id="a-606529528" href="#Setup">Setup</a><ul><li>2.1&nbsp;&nbsp;<a id="a-606532838" href="#Requirements">Requirements</a></li><li>2.2&nbsp;&nbsp;<a id="a-606547218" href="#Installation">Installation</a></li><li>2.3&nbsp;&nbsp;<a id="a-606552068" href="#Manifest">Manifest</a></li><li>2.4&nbsp;&nbsp;<a id="a-606575118" href="#Version-numbering-system">Version numbering system</a></li></ul></li><li>3&nbsp;&nbsp;<a id="a-606581738" href="#Theory-of-operation">Theory of operation</a><ul><li>3.1&nbsp;&nbsp;<a id="a-606599008" href="#Nodes">Nodes</a><ul><li>3.1.1&nbsp;&nbsp;<a id="a-606606938" href="#Node.class">The <code class="code"><span style="color:#036; font-weight:bold">Node</span></code> class</a></li></ul></li><li>3.2&nbsp;&nbsp;<a id="a-606610458" href="#SpecFile">Format specification file</a><ul><li>3.2.1&nbsp;&nbsp;<a id="a-606617008" href="#SpecFile.nodes">Node definition</a><ul><li>3.2.1.1&nbsp;&nbsp;<a id="a-606621848" href="#SpecFile.nodes.output">Node output template</a></li></ul></li><li>3.2.2&nbsp;&nbsp;<a id="a-606625698" href="#SpecFile.output">Document output template</a></li><li>3.2.3&nbsp;&nbsp;<a id="a-606628908" href="#HelloWorld">Creating your own custom format</a></li></ul></li></ul></li><li>4&nbsp;&nbsp;<a id="a-606667348" href="#Usage">Usage</a><ul><li>4.1&nbsp;&nbsp;<a id="a-606678468" href="#include">The <strong>include</strong> directive</a></li></ul></li><li>5&nbsp;&nbsp;<a id="a-606682968" href="#Formats">Formats</a><ul><li>5.1&nbsp;&nbsp;<a id="a-606694868" href="#html">HTML</a><ul><li>5.1.1&nbsp;&nbsp;<a id="a-606697248" href="#Text-to-HTML-conversion">Text to HTML conversion</a><ul><li>5.1.1.1&nbsp;&nbsp;<a id="a-606700558" href="#Syntax-coloring-for-source-code">Syntax coloring for source code</a><ul><li>5.1.1.1.1&nbsp;&nbsp;<a id="a-606704368" href="#Specifying-the-programming-language">Specifying the programming language</a></li></ul></li><li>5.1.1.2&nbsp;&nbsp;<a id="a-606707088" href="#Smart-sizing-of-source-code">Smart sizing of source code</a></li><li>5.1.1.3&nbsp;&nbsp;<a id="a-606709698" href="#Protecting-verbatim-text">Protecting verbatim text</a></li></ul></li><li>5.1.2&nbsp;&nbsp;<a id="a-606712438" href="#Parameters">Parameters</a></li><li>5.1.3&nbsp;&nbsp;<a id="a-606725538" href="#Methods">Methods</a></li><li>5.1.4&nbsp;&nbsp;<a id="a-607360708" href="#html.nodes">Nodes</a><ul><li>5.1.4.1&nbsp;&nbsp;<a id="a-607367068" href="#Structure">Structure</a><ul><li>5.1.4.1.1&nbsp;&nbsp;<a id="a-607368768" href="#html.nodes.header">header</a></li><li>5.1.4.1.2&nbsp;&nbsp;<a id="a-607370838" href="#html.nodes.footer">footer</a></li><li>5.1.4.1.3&nbsp;&nbsp;<a id="a-607372938" href="#html.nodes.abstract">abstract</a></li><li>5.1.4.1.4&nbsp;&nbsp;<a id="a-607375068" href="#html.nodes.xref">xref</a></li></ul></li><li>5.1.4.2&nbsp;&nbsp;<a id="a-607380968" href="#Organization">Organization</a><ul><li>5.1.4.2.1&nbsp;&nbsp;<a id="a-607382698" href="#html.nodes.part">part</a><ul><li>5.1.4.2.1.1&nbsp;&nbsp;<a id="a-607384378" href="#An-example">An example</a></li></ul></li><li>5.1.4.2.2&nbsp;&nbsp;<a id="a-607389148" href="#html.nodes.chapter">chapter</a><ul><li>5.1.4.2.2.1&nbsp;&nbsp;<a id="a-607392628" href="#An-example-607958288">An example</a></li></ul></li><li>5.1.4.2.3&nbsp;&nbsp;<a id="a-607398988" href="#html.nodes.section">section</a><ul><li>5.1.4.2.3.1&nbsp;&nbsp;<a id="a-607404598" href="#An-example-607983638">An example</a></li></ul></li><li>5.1.4.2.4&nbsp;&nbsp;<a id="a-607413468" href="#html.nodes.paragraph">paragraph</a></li></ul></li><li>5.1.4.3&nbsp;&nbsp;<a id="a-607429568" href="#Admonitions">Admonitions</a><ul><li>5.1.4.3.1&nbsp;&nbsp;<a id="a-607444018" href="#html.nodes.warning">warning</a></li><li>5.1.4.3.2&nbsp;&nbsp;<a id="a-607458198" href="#html.nodes.caution">caution</a></li><li>5.1.4.3.3&nbsp;&nbsp;<a id="a-607468758" href="#html.nodes.important">important</a></li><li>5.1.4.3.4&nbsp;&nbsp;<a id="a-607483388" href="#html.nodes.note">note</a></li><li>5.1.4.3.5&nbsp;&nbsp;<a id="a-607495558" href="#html.nodes.tip">tip</a></li></ul></li><li>5.1.4.4&nbsp;&nbsp;<a id="a-607512328" href="#Auxilary-materials">Auxilary materials</a><ul><li>5.1.4.4.1&nbsp;&nbsp;<a id="a-607518368" href="#html.nodes.figure">figure</a></li><li>5.1.4.4.2&nbsp;&nbsp;<a id="a-607534108" href="#html.nodes.table">table</a></li><li>5.1.4.4.3&nbsp;&nbsp;<a id="a-607547408" href="#html.nodes.example">example</a></li><li>5.1.4.4.4&nbsp;&nbsp;<a id="a-607552748" href="#html.nodes.equation">equation</a></li><li>5.1.4.4.5&nbsp;&nbsp;<a id="a-607556978" href="#html.nodes.procedure">procedure</a></li></ul></li><li>5.1.4.5&nbsp;&nbsp;<a id="a-607561538" href="#Bibliography">Bibliography</a><ul><li>5.1.4.5.1&nbsp;&nbsp;<a id="a-607563538" href="#html.nodes.reference">reference</a></li><li>5.1.4.5.2&nbsp;&nbsp;<a id="a-607572658" href="#html.nodes.cite">cite</a></li></ul></li></ul></li></ul></li><li>5.2&nbsp;&nbsp;<a id="a-607581168" href="#text">Plain text</a></li><li>5.3&nbsp;&nbsp;<a id="a-607583378" href="#latex">LaTeX</a></li><li>5.4&nbsp;&nbsp;<a id="a-607585638" href="#man">UNIX man page</a></li></ul></li>
839
987
 
840
-
988
+ <li><a href="#References">References</a></li>
989
+ </ul>
990
+ </div>
841
991
 
842
- <div id="toc"><h1>Contents</h1> <ul><li>1&nbsp;&nbsp;<a id="a-605690458" href="#Introduction">Introduction</a><ul><li>1.1&nbsp;&nbsp;<a id="a-606176228" href="#Features">Features</a></li><li>1.2&nbsp;&nbsp;<a id="a-606182908" href="#License">License</a></li><li>1.3&nbsp;&nbsp;<a id="a-606189058" href="#Reviews">Reviews</a></li></ul></li><li>2&nbsp;&nbsp;<a id="a-606195148" href="#Setup">Setup</a><ul><li>2.1&nbsp;&nbsp;<a id="a-606198708" href="#Requirements">Requirements</a></li><li>2.2&nbsp;&nbsp;<a id="a-606210498" href="#Installation">Installation</a></li><li>2.3&nbsp;&nbsp;<a id="a-606220358" href="#Manifest">Manifest</a></li><li>2.4&nbsp;&nbsp;<a id="a-606241838" href="#Version-numbering-system">Version numbering system</a></li></ul></li><li>3&nbsp;&nbsp;<a id="a-606248408" href="#Theory-of-operation">Theory of operation</a><ul><li>3.1&nbsp;&nbsp;<a id="a-606267838" href="#Nodes">Nodes</a><ul><li>3.1.1&nbsp;&nbsp;<a id="a-606279598" href="#Node.class">The <code class="code"><span style="color:#036; font-weight:bold">Node</span></code> class</a></li></ul></li><li>3.2&nbsp;&nbsp;<a id="a-606286778" href="#SpecFile">Format specification file</a><ul><li>3.2.1&nbsp;&nbsp;<a id="a-606296088" href="#SpecFile.nodes">Node definition</a><ul><li>3.2.1.1&nbsp;&nbsp;<a id="a-606300858" href="#SpecFile.nodes.output">Node output template</a></li></ul></li><li>3.2.2&nbsp;&nbsp;<a id="a-606305578" href="#SpecFile.output">Document output template</a></li><li>3.2.3&nbsp;&nbsp;<a id="a-606308268" href="#HelloWorld">Creating your own custom format</a></li></ul></li></ul></li><li>4&nbsp;&nbsp;<a id="a-606339698" href="#Usage">Usage</a><ul><li>4.1&nbsp;&nbsp;<a id="a-606347418" href="#include">The <strong>include</strong> directive</a></li></ul></li><li>5&nbsp;&nbsp;<a id="a-606352338" href="#Formats">Formats</a><ul><li>5.1&nbsp;&nbsp;<a id="a-606365408" href="#html">HTML</a><ul><li>5.1.1&nbsp;&nbsp;<a id="a-606368788" href="#Text-to-HTML-conversion">Text to HTML conversion</a><ul><li>5.1.1.1&nbsp;&nbsp;<a id="a-606376608" href="#Syntax-coloring-for-source-code">Syntax coloring for source code</a><ul><li>5.1.1.1.1&nbsp;&nbsp;<a id="a-606380538" href="#Specifying-the-programming-language">Specifying the programming language</a></li></ul></li><li>5.1.1.2&nbsp;&nbsp;<a id="a-606385258" href="#Smart-sizing-of-source-code">Smart sizing of source code</a></li><li>5.1.1.3&nbsp;&nbsp;<a id="a-606389488" href="#Protecting-verbatim-text">Protecting verbatim text</a></li></ul></li><li>5.1.2&nbsp;&nbsp;<a id="a-606394628" href="#Parameters">Parameters</a></li><li>5.1.3&nbsp;&nbsp;<a id="a-606399218" href="#Methods">Methods</a></li><li>5.1.4&nbsp;&nbsp;<a id="a-607016588" href="#html.nodes">Nodes</a><ul><li>5.1.4.1&nbsp;&nbsp;<a id="a-607033098" href="#Structure">Structure</a><ul><li>5.1.4.1.1&nbsp;&nbsp;<a id="a-607036378" href="#html.nodes.header">header</a></li><li>5.1.4.1.2&nbsp;&nbsp;<a id="a-607038448" href="#html.nodes.footer">footer</a></li><li>5.1.4.1.3&nbsp;&nbsp;<a id="a-607040548" href="#html.nodes.abstract">abstract</a></li><li>5.1.4.1.4&nbsp;&nbsp;<a id="a-607042678" href="#html.nodes.xref">xref</a></li></ul></li><li>5.1.4.2&nbsp;&nbsp;<a id="a-607048578" href="#Organization">Organization</a><ul><li>5.1.4.2.1&nbsp;&nbsp;<a id="a-607050288" href="#html.nodes.part">part</a><ul><li>5.1.4.2.1.1&nbsp;&nbsp;<a id="a-607051948" href="#An-example">An example</a></li></ul></li><li>5.1.4.2.2&nbsp;&nbsp;<a id="a-607054458" href="#html.nodes.chapter">chapter</a><ul><li>5.1.4.2.2.1&nbsp;&nbsp;<a id="a-607056148" href="#An-example-607136108">An example</a></li></ul></li><li>5.1.4.2.3&nbsp;&nbsp;<a id="a-607058658" href="#html.nodes.section">section</a><ul><li>5.1.4.2.3.1&nbsp;&nbsp;<a id="a-607060378" href="#An-example-607242568">An example</a></li></ul></li><li>5.1.4.2.4&nbsp;&nbsp;<a id="a-607062888" href="#html.nodes.paragraph">paragraph</a></li></ul></li><li>5.1.4.3&nbsp;&nbsp;<a id="a-607067128" href="#Admonitions">Admonitions</a><ul><li>5.1.4.3.1&nbsp;&nbsp;<a id="a-607072748" href="#html.nodes.warning">warning</a></li><li>5.1.4.3.2&nbsp;&nbsp;<a id="a-607085348" href="#html.nodes.caution">caution</a></li><li>5.1.4.3.3&nbsp;&nbsp;<a id="a-607102958" href="#html.nodes.important">important</a></li><li>5.1.4.3.4&nbsp;&nbsp;<a id="a-607121388" href="#html.nodes.note">note</a></li><li>5.1.4.3.5&nbsp;&nbsp;<a id="a-607139008" href="#html.nodes.tip">tip</a></li></ul></li><li>5.1.4.4&nbsp;&nbsp;<a id="a-607152728" href="#Auxilary-materials">Auxilary materials</a><ul><li>5.1.4.4.1&nbsp;&nbsp;<a id="a-607155488" href="#html.nodes.figure">figure</a></li><li>5.1.4.4.2&nbsp;&nbsp;<a id="a-607165808" href="#html.nodes.table">table</a></li><li>5.1.4.4.3&nbsp;&nbsp;<a id="a-607172808" href="#html.nodes.example">example</a></li><li>5.1.4.4.4&nbsp;&nbsp;<a id="a-607182908" href="#html.nodes.equation">equation</a></li><li>5.1.4.4.5&nbsp;&nbsp;<a id="a-607192058" href="#html.nodes.procedure">procedure</a></li></ul></li><li>5.1.4.5&nbsp;&nbsp;<a id="a-607206348" href="#Bibliography">Bibliography</a><ul><li>5.1.4.5.1&nbsp;&nbsp;<a id="a-607212128" href="#html.nodes.reference">reference</a></li><li>5.1.4.5.2&nbsp;&nbsp;<a id="a-607239408" href="#html.nodes.cite">cite</a></li></ul></li></ul></li></ul></li><li>5.2&nbsp;&nbsp;<a id="a-607247898" href="#text">Plain text</a></li><li>5.3&nbsp;&nbsp;<a id="a-607250098" href="#latex">LaTeX</a></li><li>5.4&nbsp;&nbsp;<a id="a-607252408" href="#man">UNIX man page</a></li></ul></li></ul></div>
992
+ <div id="lof"><h1 id="Cautions" class="title"><a class="here" href="#Cautions">Cautions</a></h1> <ol><li><a id="a-607466448" href="#An-example-606627708">An example</a></li></ol><h1 id="Equations" class="title"><a class="here" href="#Equations">Equations</a></h1> <ol><li><a id="a-607554518" href="#An-example-607310708">An example</a></li></ol><h1 id="Examples" class="title"><a class="here" href="#Examples">Examples</a></h1> <ol><li><a id="a-606648798" href="#HelloWorld.spec">HelloWorld format specification file</a></li><li><a id="a-606656478" href="#HelloWorld.input">Input document for HelloWorld format</a></li><li><a id="a-606660768" href="#HelloWorld.output">Output of HelloWorld format</a></li><li><a id="a-607550448" href="#An-example-607230018">An example</a></li></ol><h1 id="Figures" class="title"><a class="here" href="#Figures">Figures</a></h1> <ol><li><a id="a-607523218" href="#An-example-607112548">An example</a></li></ol><h1 id="Importants" class="title"><a class="here" href="#Importants">Importants</a></h1> <ol><li><a id="a-607479468" href="#An-example-606810938">An example</a></li></ol><h1 id="Notes" class="title"><a class="here" href="#Notes">Notes</a></h1> <ol><li><a id="a-606504258" href="#See-the-source-of-this-guide">See the source of this guide</a></li><li><a id="a-607489938" href="#An-example-606918718">An example</a></li></ol><h1 id="Procedures" class="title"><a class="here" href="#Procedures">Procedures</a></h1> <ol><li><a id="a-607558768" href="#An-example-607356818">An example</a></li></ol><h1 id="Tables" class="title"><a class="here" href="#Tables">Tables</a></h1> <ol><li><a id="a-607543768" href="#An-example-607151838">An example</a></li></ol><h1 id="Tips" class="title"><a class="here" href="#Tips">Tips</a></h1> <ol><li><a id="a-607504018" href="#An-example-606437288">An example</a></li></ol><h1 id="Warnings" class="title"><a class="here" href="#Warnings">Warnings</a></h1> <ol><li><a id="a-607453388" href="#An-example-608053408">An example</a></li></ol></div>
843
993
 
844
- <div id="lof"><h1>Cautions</h1> <ol><li><a id="a-607096198" href="#An-example-607346048">An example</a></li></ol><h1>Equations</h1> <ol><li><a id="a-607186458" href="#An-example-607544658">An example</a></li></ol><h1>Examples</h1> <ol><li><a id="a-606323768" href="#HelloWorld.spec">HelloWorld format specification file</a></li><li><a id="a-606328598" href="#HelloWorld.input">Input document for HelloWorld format</a></li><li><a id="a-606336548" href="#HelloWorld.output">Output of HelloWorld format</a></li><li><a id="a-607176778" href="#An-example-607522818">An example</a></li></ol><h1>Figures</h1> <ol><li><a id="a-607157598" href="#An-example-607477718">An example</a></li></ol><h1>Importants</h1> <ol><li><a id="a-607116008" href="#An-example-607377118">An example</a></li></ol><h1>Notes</h1> <ol><li><a id="a-606170928" href="#See-the-source-of-this-guide">See the source of this guide</a></li><li><a id="a-607132188" href="#An-example-607412768">An example</a></li></ol><h1>Procedures</h1> <ol><li><a id="a-607198148" href="#An-example-607566718">An example</a></li></ol><h1>Tables</h1> <ol><li><a id="a-607169488" href="#An-example-607500258">An example</a></li></ol><h1>Tips</h1> <ol><li><a id="a-607146098" href="#An-example-607442918">An example</a></li></ol><h1>Warnings</h1> <ol><li><a id="a-607078588" href="#An-example-607316558">An example</a></li></ol></div>
994
+ <br style="display: none"/>
995
+ <hr style="display: none"/>
996
+ <br style="display: none"/>
845
997
 
846
998
  <div id="content">
847
999
 
848
1000
  <div class="chapter">
849
1001
  <h1 class="title">
850
1002
  Chapter
851
- <a class="toc" id="Introduction" href="#a-605690458">1</a>
1003
+ <a class="list" id="Introduction" href="#a-606474808">1</a>
852
1004
 
853
1005
  <br/>
854
1006
 
855
- <big>Introduction</big>
1007
+ <a class="here" href="#Introduction"><big>Introduction</big></a>
856
1008
  </h1>
857
1009
 
858
- <div class="content"><p>Gerbil is an <strong>extensible document generator</strong> based on <a href="http://www.ruby-doc.org/docs/ProgrammingRuby/html/web.html#S2">eRuby</a> that outputs to any format you want: <a class="xref" href="#html">HTML (web page)</a>, <a class="xref" href="#latex">LaTeX</a>, <a class="xref" href="#man">UNIX man page</a>, <a class="xref" href="#text">plain text</a>, <a class="xref" href="#HelloWorld">your own custom format</a>, and so on.</p>
1010
+ <div class="content"><p>Gerbil is an <strong>extensible document generator</strong> based on <a href="http://www.ruby-doc.org/docs/ProgrammingRuby/html/web.html#S2">eRuby</a> that outputs to any format you want: <a class="xref" href="#html" title="Chapter 5.1. HTML">HTML (web page)</a>, <a class="xref" href="#latex" title="Chapter 5.3. LaTeX">LaTeX</a>, <a class="xref" href="#man" title="Chapter 5.4. UNIX man page">UNIX man page</a>, <a class="xref" href="#text" title="Chapter 5.2. Plain text">plain text</a>, <a class="xref" href="#HelloWorld" title="Section 3.2.3. Creating your own custom format">your own custom format</a>, and so on.</p>
859
1011
 
860
1012
 
861
- <p>Gerbil is <strong>lighter</strong> and more <strong>flexible</strong> than <a href="http://www.docbook.org">DocBook</a>, <a href="http://deplate.sourceforge.net">Deplate</a>, and <a href="http://www.jus.uio.no/sisu/SiSU/">SiSU</a> because it is small, fast, and lets you <a class="xref" href="#HelloWorld">define your own custom format</a>. Furthermore, Gerbil is <strong>scriptable</strong> unlike raw text generators such as <a href="http://www.methods.co.nz/asciidoc/">AsciiDoc</a>, <a href="http://txt2tags.sourceforge.net">txt2tags</a>, and <a href="http://www.triptico.com/software/grutatxt.html">Grutatxt</a> because it lets you inject Ruby code directly into your documents for dynamic content generation.</p>
1013
+ <p>Gerbil is <strong>light</strong> and <strong>flexible</strong> against <a href="http://www.docbook.org">DocBook</a>, <a href="http://deplate.sourceforge.net">Deplate</a>, and <a href="http://www.jus.uio.no/sisu/SiSU/">SiSU</a> because it is <em>tiny</em> (less than 200 lines!) and it lets you <a class="xref" href="#HelloWorld" title="Section 3.2.3. Creating your own custom format">define your own custom format</a>. Furthermore, Gerbil is <strong>scriptable</strong> unlike raw text generators such as <a href="http://www.methods.co.nz/asciidoc/">AsciiDoc</a>, <a href="http://txt2tags.sourceforge.net">txt2tags</a>, and <a href="http://www.triptico.com/software/grutatxt.html">Grutatxt</a> because it lets you inject Ruby code directly into your documents for <strong>dynamic content generation</strong>.</p>
862
1014
 
863
1015
 
864
- <p>Gerbil is <strong>open-source software</strong> (see <a class="xref" href="#License">Section 1.2: <em>License</em></a>) so feel free to contribute your improvements and discuss your ideas <a class="xref" href="#License">with the author</a>. You can obtain the source code from the project <a href="http://darcs.net">Darcs</a> repository by running the following command:</p>
1016
+ <p>Gerbil is <strong>open-source software</strong> (see <a class="xref" href="#License">Section 1.2. License</a>) so feel free to contribute your improvements and discuss your ideas <a class="xref" href="#License" title="Section 1.2. License">with the author</a>. You can obtain the source code from the project <a href="http://darcs.net">Darcs</a> repository by running the following command:</p>
865
1017
 
866
1018
 
867
1019
  <pre>darcs get http://gerbil.rubyforge.org/src gerbil</pre>
@@ -871,83 +1023,25 @@
871
1023
 
872
1024
 
873
1025
  <p><div class="note">
874
- <p class="title"><a class="toc" id="See-the-source-of-this-guide" href="#a-606170928">Note 1</a>.&nbsp;&nbsp;See the source of this guide</p>
875
-
876
- <img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAABHNCSVQICAgI
877
- fAhkiAAAAAlwSFlzAAAN1wAADdcBQiibeAAAABl0RVh0U29mdHdhcmUAd3d3
878
- Lmlua3NjYXBlLm9yZ5vuPBoAAAmCSURBVGiB1ZltbJXlGcd/9/N+Tlssh1Ja
879
- hNEJaK2UFxFptqC2wGCSTWdM3DSQzWVDEzVxy4xfjNkHQ8xMnEEXviwZ62Rj
880
- 6siWTcVBZeJA5yBQpOWlKNZSaEvpyyk95zwv970Pp+fY5/S0tFBkXsmTc67n
881
- eu77+f/u6349Ryil+Cqbdq0FXKldEuClp+3nfvVz/eJLT9vPXQv/igFc13tq
882
- w4/ujLqu99S18C9lRr6br7zyyi2WZb2eSqUqpVSUlE5BSmW8/PLL6sv2bdtu
883
- TiaT9z/++ONN486AZVm/XLiw+qZlt98Wun/bsqUhf+nSJSF/ya2LQv6ixQtD
884
- /sJFC0L+guqqkF91S2XIr6y6idlfm1Vp2/Yz+XSOCiCEqDJMQ3ze+hm6bnC+
885
- sx9d1zl+vBlN1znf2Y+m6TQfa0LTvvCbmo6G/KNHj4T8Ix83hvzGI4dD/uHG
886
- QyG/peUElmUJIURlPp2jAkgpiwXg+R5FM9dRv3U/heXrkFJSWHZ32i/7NlJK
887
- CsrWUr91P9EZa5FSEildQ/3W/USmfwspJc701dRv3Y9dshopJda0VdRv3Y8V
888
- W4mUEjO2kvqt+zCm1iGlxCiu5fe/24defBeu6yHSkopHAxD51oEtW7bEb1++
889
- rLC5+ShBEKCU+uJCgWJCvlJD9/iinlw/o2O4b5omixct4fixkz2PPPJILB9A
890
- 3kEspYzOmjWbxYuWjIiNtfBdjdjg4EWam44XjhYf0YU2b948xTTNoGRaSbjl
891
- R2mlqx0rLCxC0zR98+bNdj6AERkIgiDmOI6nlDK/7NbOF1NKYdt2KplMxoCz
892
- ufERAKZpxiKRSDC8wnfeeWfUl06W0FxbtWpV9tloNOoPDg6OD0BKGYtEIqGX
893
- rV69etKFXio2vGs5jqOklOMbxJqmxaLRqBheSRAEo77sSoWOZkKI7DORSERo
894
- mjY+AKVULBKJGMMB3n333Uum/XK35aOVq6ury2YiEonoSqnxAziOYw0HqKur
895
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- BcyeNRsA6Q+S6G4h1XcaJdMLZ0evT3tXG/65VznU9j5eofqN5/N8/c7+9kyd
905
- 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
- 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
- RGK2bbtAZDLmc99z+aDhT+x6/dfMmTWdH3znG5ROL03HUr0kzp/AjbcDikAq
908
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- iOW191BYXM7p9j5Ot+8J1XXnnXeGYEzT1F3XHRsgCIKYZVlmLsCKFStGtMqw
916
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- GZcCKMnsRIf3QV3XRwBkYmUzK0JAmSsIguz3fK2t6zqapqFp2og6873Hsiw8
924
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
933
- " class="icon"/>
934
-
935
- <div class="content">Did you know that this user guide was generated by Gerbil? Here is <a href="guide.erb">the source document</a> to prove it!</div>
1026
+ <p class="title"><a class="list" id="See-the-source-of-this-guide" href="#a-606504258">Note 1</a>.&nbsp;&nbsp;<a class="here" href="#See-the-source-of-this-guide">See the source of this guide</a></p>
1027
+
1028
+ <div class="content icon-note">Did you know that this user guide was generated by Gerbil?
1029
+ Here is <a href="guide.erb">the source document</a> to prove it!</div>
936
1030
  </div>
937
1031
  <div class="section">
938
1032
  <h2 class="title">
939
- <a class="toc" id="Features" href="#a-606176228">1.1</a>&nbsp;&nbsp;Features
1033
+ <a class="list" id="Features" href="#a-606507708">1.1</a>&nbsp;&nbsp;<a class="here" href="#Features">Features</a>
940
1034
  </h2>
941
1035
  <div class="content"><ul>
942
1036
  <li>Composed of <strong>less than 200 lines</strong> of code!</li>
943
- <li>Lets you <a class="xref" href="#HelloWorld"><strong>define your own</strong> document format</a>.</li>
1037
+ <li>Lets you <a class="xref" href="#HelloWorld" title="Section 3.2.3. Creating your own custom format"><strong>define your own</strong> document format</a>.</li>
944
1038
  <li>Supports <strong>any text-based output</strong> format.</li>
945
1039
  <li>Generates a <strong>table of contents</strong> automatically.</li>
946
1040
  </ul></div>
947
1041
  </div>
948
1042
  <div class="section">
949
1043
  <h2 class="title">
950
- <a class="toc" id="License" href="#a-606182908">1.2</a>&nbsp;&nbsp;License
1044
+ <a class="list" id="License" href="#a-606517248">1.2</a>&nbsp;&nbsp;<a class="here" href="#License">License</a>
951
1045
  </h2>
952
1046
  <div class="content"><p>Copyright 2006 Suraj N. Kurapati &lt;SNK at GNA dot ORG&gt;</p>
953
1047
 
@@ -983,7 +1077,7 @@ IMPLIED, INCLUDING <span class="caps">BUT NOT LIMITED TO THE WARRANTIES OF MERCH
983
1077
  </div>
984
1078
  <div class="section">
985
1079
  <h2 class="title">
986
- <a class="toc" id="Reviews" href="#a-606189058">1.3</a>&nbsp;&nbsp;Reviews
1080
+ <a class="list" id="Reviews" href="#a-606523738">1.3</a>&nbsp;&nbsp;<a class="here" href="#Reviews">Reviews</a>
987
1081
  </h2>
988
1082
  <div class="content"><blockquote>
989
1083
  <p>I actually felt like printing it [this user guide], because it&#8217;s just so well-thought typographically&#8230; Even if it [Gerbil] weren&#8217;t great by itself, I&#8217;d feel good just looking at the manual [this user guide].</p>
@@ -1012,16 +1106,16 @@ IMPLIED, INCLUDING <span class="caps">BUT NOT LIMITED TO THE WARRANTIES OF MERCH
1012
1106
  <div class="chapter">
1013
1107
  <h1 class="title">
1014
1108
  Chapter
1015
- <a class="toc" id="Setup" href="#a-606195148">2</a>
1109
+ <a class="list" id="Setup" href="#a-606529528">2</a>
1016
1110
 
1017
1111
  <br/>
1018
1112
 
1019
- <big>Setup</big>
1113
+ <a class="here" href="#Setup"><big>Setup</big></a>
1020
1114
  </h1>
1021
1115
 
1022
1116
  <div class="content"><div class="section">
1023
1117
  <h2 class="title">
1024
- <a class="toc" id="Requirements" href="#a-606198708">2.1</a>&nbsp;&nbsp;Requirements
1118
+ <a class="list" id="Requirements" href="#a-606532838">2.1</a>&nbsp;&nbsp;<a class="here" href="#Requirements">Requirements</a>
1025
1119
  </h2>
1026
1120
  <div class="content"><p>Your system needs the following software to run Gerbil.</p>
1027
1121
 
@@ -1037,11 +1131,11 @@ IMPLIED, INCLUDING <span class="caps">BUT NOT LIMITED TO THE WARRANTIES OF MERCH
1037
1131
  </tr>
1038
1132
  <tr>
1039
1133
  <td> <a href="http://whytheluckystiff.net/ruby/redcloth/">RedCloth</a> </td>
1040
- <td> Required by the <a class="xref" href="#html">default HTML format</a>. </td>
1134
+ <td> Required by the <a class="xref" href="#html" title="Chapter 5.1. HTML">default HTML format</a>. </td>
1041
1135
  </tr>
1042
1136
  <tr>
1043
1137
  <td> <a href="http://coderay.rubychan.de/">CodeRay</a> </td>
1044
- <td> Required by the <a class="xref" href="#html">default HTML format</a>. </td>
1138
+ <td> Required by the <a class="xref" href="#html" title="Chapter 5.1. HTML">default HTML format</a>. </td>
1045
1139
  </tr>
1046
1140
  </table>
1047
1141
 
@@ -1055,7 +1149,7 @@ IMPLIED, INCLUDING <span class="caps">BUT NOT LIMITED TO THE WARRANTIES OF MERCH
1055
1149
  </div>
1056
1150
  <div class="section">
1057
1151
  <h2 class="title">
1058
- <a class="toc" id="Installation" href="#a-606210498">2.2</a>&nbsp;&nbsp;Installation
1152
+ <a class="list" id="Installation" href="#a-606547218">2.2</a>&nbsp;&nbsp;<a class="here" href="#Installation">Installation</a>
1059
1153
  </h2>
1060
1154
  <div class="content"><p>If your system has <a href="http://rubygems.org/">RubyGems</a>, then you can install Gerbil by running the following commands:</p>
1061
1155
 
@@ -1075,15 +1169,15 @@ Otherwise, follow these instructions:
1075
1169
  <pre>ruby bin/gerbil -v</pre>
1076
1170
 
1077
1171
 
1078
- <p>If the installation was successful, then you will see output like this: <pre>Gerbil 3.0.2 (2008-06-08) http://gerbil.rubyforge.org /home/sun/src/gerbil
1172
+ <p>If the installation was successful, then you will see output like this: <pre>Gerbil 3.1.0 (2008-06-22) http://gerbil.rubyforge.org /home/sun/src/gerbil
1079
1173
  </pre></p>
1080
1174
 
1081
1175
 
1082
- <p>Otherwise, you can <a class="xref" href="#License">contact the author</a> for help.</p></div>
1176
+ <p>Otherwise, you can <a class="xref" href="#License" title="Section 1.2. License">contact the author</a> for help.</p></div>
1083
1177
  </div>
1084
1178
  <div class="section">
1085
1179
  <h2 class="title">
1086
- <a class="toc" id="Manifest" href="#a-606220358">2.3</a>&nbsp;&nbsp;Manifest
1180
+ <a class="list" id="Manifest" href="#a-606552068">2.3</a>&nbsp;&nbsp;<a class="here" href="#Manifest">Manifest</a>
1087
1181
  </h2>
1088
1182
  <div class="content">Now that Gerbil is installed on your system, let us examine its installation directory.
1089
1183
  <ul>
@@ -1099,7 +1193,7 @@ Inside Gerbil&#8217;s installation directory, you will see (among other things)
1099
1193
  <li><tt>gerbil</tt> &#8211; the main source code of Gerbil.</li>
1100
1194
  </ul>
1101
1195
  </li>
1102
- <li><tt>fmt/</tt> &#8211; contains the predefined set of format specification files (see <a class="xref" href="#SpecFile">Section 3.2: <em>Format specification file</em></a>). If you ever need to install your custom format specification file globally, put it inside this directory.
1196
+ <li><tt>fmt/</tt> &#8211; contains the predefined set of format specification files (see <a class="xref" href="#SpecFile">Section 3.2. Format specification file</a>). If you ever need to install your custom format specification file globally, put it inside this directory.
1103
1197
  <ul>
1104
1198
  <li><tt>latex.yaml</tt> &#8211; high-quality typesetting</li>
1105
1199
  <li><tt>html.yaml</tt> &#8211; web page for the Internet</li>
@@ -1130,9 +1224,9 @@ Inside Gerbil&#8217;s installation directory, you will see (among other things)
1130
1224
  </div>
1131
1225
  <div class="section">
1132
1226
  <h2 class="title">
1133
- <a class="toc" id="Version-numbering-system" href="#a-606241838">2.4</a>&nbsp;&nbsp;Version numbering system
1227
+ <a class="list" id="Version-numbering-system" href="#a-606575118">2.4</a>&nbsp;&nbsp;<a class="here" href="#Version-numbering-system">Version numbering system</a>
1134
1228
  </h2>
1135
- <div class="content">Gerbil uses the <a href="http://www.rubygems.org/read/chapter/7">RubyGems rational versioning policy</a> to number its releases. This <strong>major.minor.patch</strong> numbering policy <a href="http://ablog.apress.com/?p=738">is summarized</a> as follows.
1229
+ <div class="content"><p>Gerbil uses the <a href="http://www.rubygems.org/read/chapter/7">RubyGems rational versioning policy</a> to number its releases. This <strong>major.minor.patch</strong> numbering policy <a href="http://ablog.apress.com/?p=738">is summarized</a> as follows.</p>
1136
1230
 
1137
1231
 
1138
1232
  <table border="1">
@@ -1166,29 +1260,29 @@ Inside Gerbil&#8217;s installation directory, you will see (among other things)
1166
1260
  <div class="chapter">
1167
1261
  <h1 class="title">
1168
1262
  Chapter
1169
- <a class="toc" id="Theory-of-operation" href="#a-606248408">3</a>
1263
+ <a class="list" id="Theory-of-operation" href="#a-606581738">3</a>
1170
1264
 
1171
1265
  <br/>
1172
1266
 
1173
- <big>Theory of operation</big>
1267
+ <a class="here" href="#Theory-of-operation"><big>Theory of operation</big></a>
1174
1268
  </h1>
1175
1269
 
1176
1270
  <div class="content">When you run Gerbil, it operates in the following order:
1177
1271
  <ol>
1178
- <li>loads the <a class="xref" href="#SpecFile">format specification file</a></li>
1272
+ <li>loads the <a class="xref" href="#SpecFile" title="Section 3.2. Format specification file">format specification file</a></li>
1179
1273
  <li>creates an <strong>input document</strong> by:
1180
1274
  <ul>
1181
1275
  <li>reading the input (the content of either the input file or the standard input stream) into memory</li>
1182
- <li>evaluating <a class="xref" href="#include">include directives</a> in the input</li>
1276
+ <li>evaluating <a class="xref" href="#include" title="Section 4.1. The *include* directive">include directives</a> in the input</li>
1183
1277
  </ul>
1184
1278
  </li>
1185
1279
  <li>transforms the input document into a <strong>processed document</strong> by:
1186
1280
  <ul>
1187
- <li>building a &#8220;document tree&#8221; data-structure from <a class="xref" href="#Nodes">nodes</a> present in the input document</li>
1188
- <li>replacing every node in the input document with the result of its <a class="xref" href="#SpecFile.nodes.output">node output template</a></li>
1281
+ <li>building a &#8220;document tree&#8221; data-structure from <a class="xref" href="#Nodes" title="Section 3.1. Nodes">nodes</a> present in the input document</li>
1282
+ <li>replacing every node in the input document with the result of its <a class="xref" href="#SpecFile.nodes.output" title="Section 3.2.1.1. Node output template">node output template</a></li>
1189
1283
  </ul>
1190
1284
  </li>
1191
- <li>transforms the processed document into an <strong>output document</strong> according to the <a class="xref" href="#SpecFile.output">document output template</a></li>
1285
+ <li>transforms the processed document into an <strong>output document</strong> according to the <a class="xref" href="#SpecFile.output" title="Section 3.2.2. Document output template">document output template</a></li>
1192
1286
  <li>prints the output document to the standard output stream</li>
1193
1287
  </ol>
1194
1288
 
@@ -1198,7 +1292,7 @@ Inside Gerbil&#8217;s installation directory, you will see (among other things)
1198
1292
 
1199
1293
  <p><div class="section">
1200
1294
  <h2 class="title">
1201
- <a class="toc" id="Nodes" href="#a-606267838">3.1</a>&nbsp;&nbsp;Nodes
1295
+ <a class="list" id="Nodes" href="#a-606599008">3.1</a>&nbsp;&nbsp;<a class="here" href="#Nodes">Nodes</a>
1202
1296
  </h2>
1203
1297
  <div class="content"><p>A node is a block of text that appears like this:</p>
1204
1298
 
@@ -1244,19 +1338,19 @@ Inside Gerbil&#8217;s installation directory, you will see (among other things)
1244
1338
  </tr>
1245
1339
  <tr>
1246
1340
  <td> node_object </td>
1247
- <td> a <code class="code"><span style="color:#036; font-weight:bold">Node</span></code> object (see <a class="xref" href="#Node.class">Section 3.1.1: <em>The <code class="code"><span style="color:#036; font-weight:bold">Node</span></code> class</em></a>) representing this method invocation </td>
1341
+ <td> a <code class="code"><span style="color:#036; font-weight:bold">Node</span></code> object (see <a class="xref" href="#Node.class">Section 3.1.1. The <code class="code"><span style="color:#036; font-weight:bold">Node</span></code> class</a>) representing this method invocation </td>
1248
1342
  </tr>
1249
1343
  </table>
1250
1344
 
1251
1345
 
1252
1346
 
1253
1347
 
1254
- <p>A <a class="xref" href="#SpecFile">format specification file</a> defines what types of nodes an input document may use.</p>
1348
+ <p>A <a class="xref" href="#SpecFile" title="Section 3.2. Format specification file">format specification file</a> defines what types of nodes an input document may use.</p>
1255
1349
 
1256
1350
 
1257
1351
  <p><div class="section">
1258
1352
  <h3 class="title">
1259
- <a class="toc" id="Node.class" href="#a-606279598">3.1.1</a>&nbsp;&nbsp;The <code class="code"><span style="color:#036; font-weight:bold">Node</span></code> class
1353
+ <a class="list" id="Node.class" href="#a-606606938">3.1.1</a>&nbsp;&nbsp;<a class="here" href="#Node.class">The <code class="code"><span style="color:#036; font-weight:bold">Node</span></code> class</a>
1260
1354
  </h3>
1261
1355
  <div class="content"><p>When Gerbil builds a document tree from nodes present in an input document, it stores information about these nodes into <code class="code"><span style="color:#036; font-weight:bold">Node</span></code> objects. A <code class="code"><span style="color:#036; font-weight:bold">Node</span></code> object has the following properties (methods):</p>
1262
1356
 
@@ -1332,7 +1426,7 @@ Inside Gerbil&#8217;s installation directory, you will see (among other things)
1332
1426
  </div>
1333
1427
  <div class="section">
1334
1428
  <h2 class="title">
1335
- <a class="toc" id="SpecFile" href="#a-606286778">3.2</a>&nbsp;&nbsp;Format specification file
1429
+ <a class="list" id="SpecFile" href="#a-606610458">3.2</a>&nbsp;&nbsp;<a class="here" href="#SpecFile">Format specification file</a>
1336
1430
  </h2>
1337
1431
  <div class="content"><p>A format specification file is a plain-text file marked up in <a href="http://yaml4r.sourceforge.net/cookbook/">YAML syntax</a>. Through the following parameters, it defines (1) what types of nodes an input document may contain, (2) how the content of those nodes is transformed into output, and (3) how the processed document is transformed into the output document.</p>
1338
1432
 
@@ -1356,12 +1450,12 @@ Inside Gerbil&#8217;s installation directory, you will see (among other things)
1356
1450
  <tr>
1357
1451
  <td> nodes </td>
1358
1452
  <td> Hash </td>
1359
- <td> A listing of <a class="xref" href="#SpecFile.nodes">node definitions</a>. </td>
1453
+ <td> A listing of <a class="xref" href="#SpecFile.nodes" title="Section 3.2.1. Node definition">node definitions</a>. </td>
1360
1454
  </tr>
1361
1455
  <tr>
1362
1456
  <td> output </td>
1363
1457
  <td> String </td>
1364
- <td> An eRuby template for the final output document. See <a class="xref" href="#SpecFile.output">Section 3.2.2: <em>Document output template</em></a>. </td>
1458
+ <td> An eRuby template for the final output document. See <a class="xref" href="#SpecFile.output">Section 3.2.2. Document output template</a>. </td>
1365
1459
  </tr>
1366
1460
  </table>
1367
1461
 
@@ -1370,7 +1464,7 @@ Inside Gerbil&#8217;s installation directory, you will see (among other things)
1370
1464
 
1371
1465
  <p><div class="section">
1372
1466
  <h3 class="title">
1373
- <a class="toc" id="SpecFile.nodes" href="#a-606296088">3.2.1</a>&nbsp;&nbsp;Node definition
1467
+ <a class="list" id="SpecFile.nodes" href="#a-606617008">3.2.1</a>&nbsp;&nbsp;<a class="here" href="#SpecFile.nodes">Node definition</a>
1374
1468
  </h3>
1375
1469
  <div class="content"><p>A node definition is a mapping from a name (the &#8220;node type&#8221;) to the following set of parameters:</p>
1376
1470
 
@@ -1399,7 +1493,7 @@ Inside Gerbil&#8217;s installation directory, you will see (among other things)
1399
1493
  <tr>
1400
1494
  <td> output </td>
1401
1495
  <td> String </td>
1402
- <td> An eRuby template for the content of this node. See <a class="xref" href="#SpecFile.nodes.output">Section 3.2.1.1: <em>Node output template</em></a>. </td>
1496
+ <td> An eRuby template for the content of this node. See <a class="xref" href="#SpecFile.nodes.output">Section 3.2.1.1. Node output template</a>. </td>
1403
1497
  </tr>
1404
1498
  </table>
1405
1499
 
@@ -1411,7 +1505,7 @@ Inside Gerbil&#8217;s installation directory, you will see (among other things)
1411
1505
 
1412
1506
  <p><div class="section">
1413
1507
  <h4 class="title">
1414
- <a class="toc" id="SpecFile.nodes.output" href="#a-606300858">3.2.1.1</a>&nbsp;&nbsp;Node output template
1508
+ <a class="list" id="SpecFile.nodes.output" href="#a-606621848">3.2.1.1</a>&nbsp;&nbsp;<a class="here" href="#SpecFile.nodes.output">Node output template</a>
1415
1509
  </h4>
1416
1510
  <div class="content"><p>A node output template (the <strong>output</strong> parameter in a node definition) is an eRuby template that transforms a node&#8217;s content into output. During the processing stage, Gerbil replaces all nodes in the input document with the result of this template <em>unless</em> the <strong>silent</strong> parameter is enabled in this node&#8217;s definition.</p>
1417
1511
 
@@ -1479,7 +1573,7 @@ Inside Gerbil&#8217;s installation directory, you will see (among other things)
1479
1573
  </div>
1480
1574
  <div class="section">
1481
1575
  <h3 class="title">
1482
- <a class="toc" id="SpecFile.output" href="#a-606305578">3.2.2</a>&nbsp;&nbsp;Document output template
1576
+ <a class="list" id="SpecFile.output" href="#a-606625698">3.2.2</a>&nbsp;&nbsp;<a class="here" href="#SpecFile.output">Document output template</a>
1483
1577
  </h3>
1484
1578
  <div class="content"><p>A document output template (the <strong>output</strong> parameter in a format specification file) is an eRuby template that transforms a processed document into the final output document.</p>
1485
1579
 
@@ -1546,30 +1640,30 @@ Inside Gerbil&#8217;s installation directory, you will see (among other things)
1546
1640
  </div>
1547
1641
  <div class="section">
1548
1642
  <h3 class="title">
1549
- <a class="toc" id="HelloWorld" href="#a-606308268">3.2.3</a>&nbsp;&nbsp;Creating your own custom format
1643
+ <a class="list" id="HelloWorld" href="#a-606628908">3.2.3</a>&nbsp;&nbsp;<a class="here" href="#HelloWorld">Creating your own custom format</a>
1550
1644
  </h3>
1551
1645
  <div class="content">Here is a working example to help you digest all that you&#8217;ve learned so far about format specification files. A few things to notice in this example are:
1552
1646
  <ul>
1553
- <li>We define a <code class="code">generate_name()</code> method in <a class="xref" href="#HelloWorld.spec">Example 1: <em>HelloWorld format specification file</em></a> and make use of it in the <a class="xref" href="#HelloWorld.input">Example 2: <em>Input document for HelloWorld format</em></a>. This shows how to provide format-specific functionality to an input document.</li>
1554
- <li>We define a <code class="code"><span style="color:#d70; font-weight:bold">$style</span></code> variable in <a class="xref" href="#HelloWorld.input">Example 2: <em>Input document for HelloWorld format</em></a> and make use of it in <a class="xref" href="#HelloWorld.spec">Example 1: <em>HelloWorld format specification file</em></a>. This shows how to make your format accept parameters from an input document.</li>
1647
+ <li>We define a <code class="code">generate_name()</code> method in <a class="xref" href="#HelloWorld.spec">Example 1. HelloWorld format specification file</a> and make use of it in the <a class="xref" href="#HelloWorld.input">Example 2. Input document for HelloWorld format</a>. This shows how to provide format-specific functionality to an input document.</li>
1648
+ <li>We define a <code class="code"><span style="color:#d70; font-weight:bold">$style</span></code> variable in <a class="xref" href="#HelloWorld.input">Example 2. Input document for HelloWorld format</a> and make use of it in <a class="xref" href="#HelloWorld.spec">Example 1. HelloWorld format specification file</a>. This shows how to make your format accept parameters from an input document.</li>
1555
1649
  </ul>
1556
1650
 
1557
1651
 
1558
1652
  To run this example, perform the following steps:
1559
1653
  <ol>
1560
- <li>Save the code shown in <a class="xref" href="#HelloWorld.spec">Example 1: <em>HelloWorld format specification file</em></a> to a file named <tt>HelloWorld.spec</tt></li>
1561
- <li>Save the text shown in <a class="xref" href="#HelloWorld.input">Example 2: <em>Input document for HelloWorld format</em></a> to a file named <tt>HelloWorld.input</tt></li>
1654
+ <li>Save the code shown in <a class="xref" href="#HelloWorld.spec">Example 1. HelloWorld format specification file</a> to a file named <tt>HelloWorld.spec</tt></li>
1655
+ <li>Save the text shown in <a class="xref" href="#HelloWorld.input">Example 2. Input document for HelloWorld format</a> to a file named <tt>HelloWorld.input</tt></li>
1562
1656
  <li>Run this command: <pre>gerbil HelloWorld.spec HelloWorld.input &gt; HelloWorld.output</pre></li>
1563
1657
  <li>Examine the <tt>HelloWorld.output</tt> file until you are satisfied!</li>
1564
1658
  </ol>
1565
1659
 
1566
1660
 
1567
1661
  <p><div class="example">
1568
- <p class="title"><a class="toc" id="HelloWorld.spec" href="#a-606323768">Example 1</a>.&nbsp;&nbsp;HelloWorld format specification file</p>
1569
- <div class="content"><pre class="code" lang="rhtml">desc: A illustrative format.
1662
+ <p class="title"><a class="list" id="HelloWorld.spec" href="#a-606648798">Example 1</a>.&nbsp;&nbsp;<a class="here" href="#HelloWorld.spec">HelloWorld format specification file</a></p>
1663
+ <div class="content"><pre class="code" lang="rhtml">desc: An example format.
1570
1664
 
1571
1665
  code: |
1572
- # Returns a random, but pronounceable, name.
1666
+ # Returns a random, yet pronounceable, name.
1573
1667
  def generate_name
1574
1668
  letters = ('a'..'z').to_a - %w[ c q w x ] # redundant sounds
1575
1669
  vowels = %w[a e i o u]
@@ -1578,17 +1672,21 @@ code: |
1578
1672
 
1579
1673
  length = 3 + rand(5)
1580
1674
 
1581
- name = ''
1582
- length.times do |i|
1675
+ name = (0...length).map do |i|
1676
+ # alternate between consonants and vowels
1583
1677
  set = sets[i % sets.length]
1584
- name <span style="color:#F00; background-color:#FAA">&lt;</span><span style="color:#F00; background-color:#FAA">&lt;</span> set[rand(set.length)]
1585
- end
1678
+
1679
+ # choose a random letter from the set
1680
+ set[rand(set.length)]
1681
+ end.join
1586
1682
 
1587
1683
  name
1588
1684
  end
1589
1685
 
1590
1686
  class Node
1591
1687
  def name
1688
+ # dynamically compute (and store)
1689
+ # the name of this node on demand
1592
1690
  @name ||= generate_name
1593
1691
  end
1594
1692
  end
@@ -1599,67 +1697,59 @@ nodes:
1599
1697
  number: true
1600
1698
  silent: false
1601
1699
  output: |
1602
- <span style="color:#070">&lt;h1&gt;</span><span style="background: #eee"><span style="color:black">&lt;%=</span> <span style="color:#33B">@node</span>.type <span style="color:black">%&gt;</span></span> #<span style="background: #eee"><span style="color:black">&lt;%=</span> <span style="color:#33B">@node</span>.index <span style="color:black">%&gt;</span></span>: <span style="background: #eee"><span style="color:black">&lt;%=</span> <span style="color:#33B">@node</span>.name.inspect <span style="color:black">%&gt;</span></span><span style="color:#070">&lt;/h1&gt;</span>
1700
+ <span style="color:#070">&lt;h3&gt;</span><span style="background: #eee"><span style="color:black">&lt;%=</span> <span style="color:#33B">@node</span>.type <span style="color:black">%&gt;</span></span> #<span style="background: #eee"><span style="color:black">&lt;%=</span> <span style="color:#33B">@node</span>.index <span style="color:black">%&gt;</span></span>: <span style="background: #eee"><span style="color:black">&lt;%=</span> <span style="color:#33B">@node</span>.name.inspect <span style="color:black">%&gt;</span></span><span style="color:#070">&lt;/h3&gt;</span>
1701
+
1603
1702
  My name is <span style="background: #eee"><span style="color:black">&lt;%=</span> <span style="color:#33B">@node</span>.name.inspect <span style="color:black">%&gt;</span></span> and these are my properties:
1604
- <span style="color:#070">&lt;table&gt;</span>
1605
- <span style="color:#070">&lt;tr&gt;</span>
1606
- <span style="color:#070">&lt;th&gt;</span>Property<span style="color:#070">&lt;/th&gt;</span>
1607
- <span style="color:#070">&lt;th&gt;</span>Value<span style="color:#070">&lt;/th&gt;</span>
1608
- <span style="color:#070">&lt;/tr&gt;</span>
1609
- <span style="color:#070">&lt;tr&gt;</span>
1610
- <span style="color:#070">&lt;td&gt;</span>args<span style="color:#070">&lt;/td&gt;</span>
1611
- <span style="color:#070">&lt;td&gt;</span><span style="background: #eee"><span style="color:black">&lt;%=</span> <span style="color:#33B">@node</span>.args.inspect <span style="color:black">%&gt;</span></span><span style="color:#070">&lt;/td&gt;</span>
1612
- <span style="color:#070">&lt;/tr&gt;</span>
1613
- <span style="color:#070">&lt;tr&gt;</span>
1614
- <span style="color:#070">&lt;td&gt;</span>index<span style="color:#070">&lt;/td&gt;</span>
1615
- <span style="color:#070">&lt;td&gt;</span><span style="background: #eee"><span style="color:black">&lt;%=</span> <span style="color:#33B">@node</span>.index.inspect <span style="color:black">%&gt;</span></span><span style="color:#070">&lt;/td&gt;</span>
1616
- <span style="color:#070">&lt;/tr&gt;</span>
1617
- <span style="color:#070">&lt;tr&gt;</span>
1618
- <span style="color:#070">&lt;td&gt;</span>number<span style="color:#070">&lt;/td&gt;</span>
1619
- <span style="color:#070">&lt;td&gt;</span><span style="background: #eee"><span style="color:black">&lt;%=</span> <span style="color:#33B">@node</span>.number.inspect <span style="color:black">%&gt;</span></span><span style="color:#070">&lt;/td&gt;</span>
1620
- <span style="color:#070">&lt;/tr&gt;</span>
1621
- <span style="color:#070">&lt;tr&gt;</span>
1622
- <span style="color:#070">&lt;td&gt;</span>trace<span style="color:#070">&lt;/td&gt;</span>
1623
- <span style="color:#070">&lt;td&gt;</span><span style="color:#070">&lt;ul&gt;</span><span style="background: #eee"><span style="color:black">&lt;%=</span> <span style="color:#33B">@node</span>.trace.map {|s| <span style="background-color:#fff0f0"><span style="color:#710">&quot;</span><span style="color:#D20">&lt;li&gt;</span><span style="background: #eee"><span style="font-weight: bold; color: #888">#{</span>s<span style="font-weight: bold; color: #888">}</span></span><span style="color:#D20">&lt;/li&gt;</span><span style="color:#710">&quot;</span></span>} <span style="color:black">%&gt;</span></span><span style="color:#070">&lt;/ul&gt;</span><span style="color:#070">&lt;/td&gt;</span>
1624
- <span style="color:#070">&lt;/tr&gt;</span>
1625
- <span style="color:#070">&lt;tr&gt;</span>
1626
- <span style="color:#070">&lt;td&gt;</span>content<span style="color:#070">&lt;/td&gt;</span>
1627
- <span style="color:#070">&lt;td&gt;</span><span style="background: #eee"><span style="color:black">&lt;%=</span> <span style="color:#33B">@node</span>.content <span style="color:black">%&gt;</span></span><span style="color:#070">&lt;/td&gt;</span>
1628
- <span style="color:#070">&lt;/tr&gt;</span>
1629
- <span style="color:#070">&lt;/table&gt;</span>
1703
+
1704
+ <span style="color:#070">&lt;dl</span> <span style="color:#007">style</span>=<span style="background-color:#fff0f0"><span style="color:#710">&quot;</span><span style="background: #eee"><span style="color:black">&lt;%=</span> <span style="color:#d70; font-weight:bold">$style</span> <span style="color:black">%&gt;</span></span><span style="color:#710">&quot;</span></span><span style="color:#070">&gt;</span>
1705
+ <span style="color:#070">&lt;dt&gt;</span>args<span style="color:#070">&lt;/dt&gt;</span>
1706
+ <span style="color:#070">&lt;dd&gt;</span><span style="color:#070">&lt;code&gt;</span><span style="background: #eee"><span style="color:black">&lt;%=</span> <span style="color:#33B">@node</span>.args.inspect <span style="color:black">%&gt;</span></span><span style="color:#070">&lt;/code&gt;</span><span style="color:#070">&lt;/dd&gt;</span>
1707
+
1708
+ <span style="color:#070">&lt;dt&gt;</span>index<span style="color:#070">&lt;/dt&gt;</span>
1709
+ <span style="color:#070">&lt;dd&gt;</span><span style="color:#070">&lt;code&gt;</span><span style="background: #eee"><span style="color:black">&lt;%=</span> <span style="color:#33B">@node</span>.index.inspect <span style="color:black">%&gt;</span></span><span style="color:#070">&lt;/code&gt;</span><span style="color:#070">&lt;/dd&gt;</span>
1710
+
1711
+ <span style="color:#070">&lt;dt&gt;</span>number<span style="color:#070">&lt;/dt&gt;</span>
1712
+ <span style="color:#070">&lt;dd&gt;</span><span style="color:#070">&lt;code&gt;</span><span style="background: #eee"><span style="color:black">&lt;%=</span> <span style="color:#33B">@node</span>.number.inspect <span style="color:black">%&gt;</span></span><span style="color:#070">&lt;/code&gt;</span><span style="color:#070">&lt;/dd&gt;</span>
1713
+
1714
+ <span style="color:#070">&lt;dt&gt;</span>trace<span style="color:#070">&lt;/td&gt;</span>
1715
+ <span style="color:#070">&lt;dd&gt;</span><span style="color:#070">&lt;pre&gt;</span><span style="background: #eee"><span style="color:black">&lt;%=</span> <span style="color:#33B">@node</span>.trace.join(<span style="background-color:#fff0f0"><span style="color:#710">&quot;</span><span style="color:#04D">\n</span><span style="color:#710">&quot;</span></span>) <span style="color:black">%&gt;</span></span><span style="color:#070">&lt;/pre&gt;</span><span style="color:#070">&lt;/dd&gt;</span>
1716
+
1717
+ <span style="color:#070">&lt;dt&gt;</span>content<span style="color:#070">&lt;/dt&gt;</span>
1718
+ <span style="color:#070">&lt;dd&gt;</span><span style="background: #eee"><span style="color:black">&lt;%=</span> <span style="color:#33B">@node</span>.content <span style="color:black">%&gt;</span></span><span style="color:#070">&lt;/dd&gt;</span>
1719
+ <span style="color:#070">&lt;/dl&gt;</span>
1630
1720
 
1631
1721
  output: |
1632
1722
  Welcome to the &quot;<span style="background: #eee"><span style="color:black">&lt;%=</span> <span style="color:#33B">@spec</span>[<span style="color:#A60">:name</span>] <span style="color:black">%&gt;</span></span>&quot; format.
1633
- <span style="color:#070">&lt;div</span> <span style="color:#007">style</span>=<span style="background-color:#fff0f0"><span style="color:#710">&quot;</span><span style="background: #eee"><span style="color:black">&lt;%=</span> <span style="color:#d70; font-weight:bold">$style</span> <span style="color:black">%&gt;</span></span><span style="color:#710">&quot;</span></span><span style="color:#070">&gt;</span><span style="background: #eee"><span style="color:black">&lt;%=</span> <span style="color:#33B">@content</span> <span style="color:black">%&gt;</span></span><span style="color:#070">&lt;/div&gt;</span>
1723
+ <span style="background: #eee"><span style="color:black">&lt;%=</span> <span style="color:#33B">@content</span> <span style="color:black">%&gt;</span></span>
1634
1724
  That's all folks!
1635
1725
  </pre></div>
1636
1726
  </div>
1637
1727
  <div class="example">
1638
- <p class="title"><a class="toc" id="HelloWorld.input" href="#a-606328598">Example 2</a>.&nbsp;&nbsp;Input document for HelloWorld format</p>
1639
- <div class="content"><pre class="code" lang="rhtml"><span style="background: #eee"><span style="color:black">&lt;%</span> <span style="color:#d70; font-weight:bold">$style</span> = <span style="background-color:#fff0f0"><span style="color:#710">&quot;</span><span style="color:#D20">border-left: thick solid salmon; padding-left: 1em;</span><span style="color:#710">&quot;</span></span> <span style="color:black">%&gt;</span></span>
1640
- <span style="background: #eee"><span style="color:black">&lt;%</span> hello <span style="background-color:#fff0f0"><span style="color:#710">&quot;</span><span style="color:#D20">Pretentious</span><span style="color:#710">&quot;</span></span> <span style="color:#080; font-weight:bold">do</span> <span style="color:black">%&gt;</span></span>
1728
+ <p class="title"><a class="list" id="HelloWorld.input" href="#a-606656478">Example 2</a>.&nbsp;&nbsp;<a class="here" href="#HelloWorld.input">Input document for HelloWorld format</a></p>
1729
+ <div class="content"><pre class="code" lang="rhtml"><span style="background: #eee"><span style="color:black">&lt;%</span> <span style="color:#d70; font-weight:bold">$style</span> = <span style="background-color:#fff0f0"><span style="color:#710">&quot;</span><span style="color:#D20">border-left: thick dotted LightGrey; padding-left: 1em;</span><span style="color:#710">&quot;</span></span> <span style="color:black">%&gt;</span></span>
1730
+ <span style="background: #eee"><span style="color:black">&lt;%</span> hello <span style="background-color:#fff0f0"><span style="color:#710">&quot;</span><span style="color:#D20">Pretentious</span><span style="color:#710">&quot;</span></span>, <span style="color:#00D; font-weight:bold">1</span>, <span style="color:#00D; font-weight:bold">2</span>, <span style="color:#00D; font-weight:bold">3</span> <span style="color:#080; font-weight:bold">do</span> <span style="color:black">%&gt;</span></span>
1641
1731
  <span style="color:#070">&lt;big&gt;</span>I'm<span style="color:#070">&lt;/big&gt;</span> the very first node, oh _yes_ I am! *sneer*
1642
1732
 
1643
- <span style="background: #eee"><span style="color:black">&lt;%</span> hello <span style="background-color:#fff0f0"><span style="color:#710">&quot;</span><span style="color:#D20">Bashful</span><span style="color:#710">&quot;</span></span> <span style="color:#080; font-weight:bold">do</span> <span style="color:black">%&gt;</span></span>
1733
+ <span style="background: #eee"><span style="color:black">&lt;%</span> hello <span style="background-color:#fff0f0"><span style="color:#710">&quot;</span><span style="color:#D20">Bashful</span><span style="color:#710">&quot;</span></span>, <span style="color:#00D; font-weight:bold">4</span>, <span style="color:#00D; font-weight:bold">5</span>, <span style="color:#00D; font-weight:bold">6</span> <span style="color:#080; font-weight:bold">do</span> <span style="color:black">%&gt;</span></span>
1644
1734
  Hi, I... *hide*
1645
1735
 
1646
- <span style="background: #eee"><span style="color:black">&lt;%</span> hello <span style="background-color:#fff0f0"><span style="color:#710">&quot;</span><span style="color:#D20">Hopeful</span><span style="color:#710">&quot;</span></span> <span style="color:#080; font-weight:bold">do</span> <span style="color:black">%&gt;</span></span>
1736
+ <span style="background: #eee"><span style="color:black">&lt;%</span> hello <span style="background-color:#fff0f0"><span style="color:#710">&quot;</span><span style="color:#D20">Hopeful</span><span style="color:#710">&quot;</span></span>, rand <span style="color:#080; font-weight:bold">do</span> <span style="color:black">%&gt;</span></span>
1647
1737
  *sigh*
1648
1738
 
1649
- <span style="background: #eee"><span style="color:black">&lt;%</span> hello <span style="background-color:#fff0f0"><span style="color:#710">&quot;</span><span style="color:#D20">Confused</span><span style="color:#710">&quot;</span></span> <span style="color:#080; font-weight:bold">do</span> <span style="color:black">%&gt;</span></span>
1739
+ <span style="background: #eee"><span style="color:black">&lt;%</span> hello <span style="background-color:#fff0f0"><span style="color:#710">&quot;</span><span style="color:#D20">Confused</span><span style="color:#710">&quot;</span></span>, (rand * rand) <span style="color:#080; font-weight:bold">do</span> <span style="color:black">%&gt;</span></span>
1650
1740
  Huh?
1651
1741
  <span style="background: #eee"><span style="color:black">&lt;%</span> <span style="color:#080; font-weight:bold">end</span> <span style="color:black">%&gt;</span></span>
1652
1742
  <span style="background: #eee"><span style="color:black">&lt;%</span> <span style="color:#080; font-weight:bold">end</span> <span style="color:black">%&gt;</span></span>
1653
1743
 
1654
- <span style="background: #eee"><span style="color:black">&lt;%</span> hello <span style="background-color:#fff0f0"><span style="color:#710">&quot;</span><span style="color:#D20">Raving</span><span style="color:#710">&quot;</span></span> <span style="color:#080; font-weight:bold">do</span> <span style="color:black">%&gt;</span></span>
1744
+ <span style="background: #eee"><span style="color:black">&lt;%</span> hello <span style="background-color:#fff0f0"><span style="color:#710">&quot;</span><span style="color:#D20">Raving</span><span style="color:#710">&quot;</span></span>, <span style="color:#038; font-weight:bold">__FILE__</span> <span style="color:#080; font-weight:bold">do</span> <span style="color:black">%&gt;</span></span>
1655
1745
  Oh it's *on* now! You're going *down*!
1656
1746
  <span style="background: #eee"><span style="color:black">&lt;%</span> <span style="color:#080; font-weight:bold">end</span> <span style="color:black">%&gt;</span></span>
1657
1747
  <span style="background: #eee"><span style="color:black">&lt;%</span> <span style="color:#080; font-weight:bold">end</span> <span style="color:black">%&gt;</span></span>
1658
1748
 
1659
- <span style="background: #eee"><span style="color:black">&lt;%</span> hello <span style="background-color:#fff0f0"><span style="color:#710">&quot;</span><span style="color:#D20">Sleepy</span><span style="color:#710">&quot;</span></span> <span style="color:#080; font-weight:bold">do</span> <span style="color:black">%&gt;</span></span>
1749
+ <span style="background: #eee"><span style="color:black">&lt;%</span> hello <span style="background-color:#fff0f0"><span style="color:#710">&quot;</span><span style="color:#D20">Sleepy</span><span style="color:#710">&quot;</span></span>, <span style="color:#036; font-weight:bold">Time</span>.now <span style="color:#080; font-weight:bold">do</span> <span style="color:black">%&gt;</span></span>
1660
1750
  *yawn* Just five more minutes...
1661
1751
 
1662
- <span style="background: #eee"><span style="color:black">&lt;%</span> hello <span style="background-color:#fff0f0"><span style="color:#710">&quot;</span><span style="color:#D20">Peaceful</span><span style="color:#710">&quot;</span></span> <span style="color:#080; font-weight:bold">do</span> <span style="color:black">%&gt;</span></span>
1752
+ <span style="background: #eee"><span style="color:black">&lt;%</span> hello <span style="background-color:#fff0f0"><span style="color:#710">&quot;</span><span style="color:#D20">Peaceful</span><span style="color:#710">&quot;</span></span>, <span style="color:#036; font-weight:bold">Dir</span>.pwd <span style="color:#080; font-weight:bold">do</span> <span style="color:black">%&gt;</span></span>
1663
1753
  So _be_ happy my friend, *happy*!
1664
1754
 
1665
1755
  <span style="background: #eee"><span style="color:black">&lt;%=</span> hello <span style="background-color:#fff0f0"><span style="color:#710">&quot;</span><span style="color:#D20">Lonely (as you can see, I have no block)</span><span style="color:#710">&quot;</span></span> <span style="color:black">%&gt;</span></span>
@@ -1675,298 +1765,300 @@ output: |
1675
1765
  <span style="background: #eee"><span style="color:black">&lt;%=</span> hello <span style="background-color:#fff0f0"><span style="color:#710">&quot;</span><span style="color:#D20">Independent (no block, no parents, I am _free_!)</span><span style="color:#710">&quot;</span></span> <span style="color:black">%&gt;</span></span></pre></div>
1676
1766
  </div>
1677
1767
  <div class="example">
1678
- <p class="title"><a class="toc" id="HelloWorld.output" href="#a-606336548">Example 3</a>.&nbsp;&nbsp;Output of HelloWorld format</p>
1768
+ <p class="title"><a class="list" id="HelloWorld.output" href="#a-606660768">Example 3</a>.&nbsp;&nbsp;<a class="here" href="#HelloWorld.output">Output of HelloWorld format</a></p>
1679
1769
  <div class="content">Welcome to the &#8220;HelloWorld&#8221; format.
1680
- <div style="border-left: thick solid salmon; padding-left: 1em;"><h1>hello #1: &#8220;kuzide&#8221;</h1>
1681
- My name is &#8220;kuzide&#8221; and these are my properties:
1682
- <table border="1">
1683
- <tr>
1684
- <th>Property</th>
1685
- <th>Value</th>
1686
- </tr>
1687
- <tr>
1688
- <td>args</td>
1689
- <td>[&#8220;Pretentious&#8221;]</td>
1690
- </tr>
1691
- <tr>
1692
- <td>index</td>
1693
- <td>&#8220;1&#8221;</td>
1694
- </tr>
1695
- <tr>
1696
- <td>number</td>
1697
- <td>1</td>
1698
- </tr>
1699
- <tr>
1700
- <td>trace</td>
1701
- <td><ul><li>INPUT:1</li><li>bin/gerbil:268</li><li>bin/gerbil:268:in `instance_eval&#8217;</li><li>bin/gerbil:268</li></ul></td>
1702
- </tr>
1703
- <tr>
1704
- <td>content</td>
1705
- <td> <big>I&#8217;m</big> the very first node, oh <em>yes</em> I am! <strong>sneer</strong>
1706
-
1707
- <h1>hello #1.1: &#8220;hunedi&#8221;</h1>
1708
- My name is &#8220;hunedi&#8221; and these are my properties:
1709
- <table border="1">
1710
- <tr>
1711
- <th>Property</th>
1712
- <th>Value</th>
1713
- </tr>
1714
- <tr>
1715
- <td>args</td>
1716
- <td>[&#8220;Bashful&#8221;]</td>
1717
- </tr>
1718
- <tr>
1719
- <td>index</td>
1720
- <td>&#8220;1.1&#8221;</td>
1721
- </tr>
1722
- <tr>
1723
- <td>number</td>
1724
- <td>2</td>
1725
- </tr>
1726
- <tr>
1727
- <td>trace</td>
1728
- <td><ul><li>INPUT:3</li><li>bin/gerbil:79:in `content_from_block&#8217;</li><li>bin/gerbil:249:in `hello&#8217;</li><li>INPUT:1</li><li>bin/gerbil:268</li><li>bin/gerbil:268:in `instance_eval&#8217;</li><li>bin/gerbil:268</li></ul></td>
1729
- </tr>
1730
- <tr>
1731
- <td>content</td>
1732
- <td> Hi, I&#8230; <strong>hide</strong>
1733
-
1734
- <h1>hello #1.1.1: &#8220;tefikos&#8221;</h1>
1735
- My name is &#8220;tefikos&#8221; and these are my properties:
1736
- <table border="1">
1737
- <tr>
1738
- <th>Property</th>
1739
- <th>Value</th>
1740
- </tr>
1741
- <tr>
1742
- <td>args</td>
1743
- <td>[&#8220;Hopeful&#8221;]</td>
1744
- </tr>
1745
- <tr>
1746
- <td>index</td>
1747
- <td>&#8220;1.1.1&#8221;</td>
1748
- </tr>
1749
- <tr>
1750
- <td>number</td>
1751
- <td>3</td>
1752
- </tr>
1753
- <tr>
1754
- <td>trace</td>
1755
- <td><ul><li>INPUT:5</li><li>bin/gerbil:79:in `content_from_block&#8217;</li><li>bin/gerbil:249:in `hello&#8217;</li><li>INPUT:3</li><li>bin/gerbil:79:in `content_from_block&#8217;</li><li>bin/gerbil:249:in `hello&#8217;</li><li>INPUT:1</li><li>bin/gerbil:268</li><li>bin/gerbil:268:in `instance_eval&#8217;</li><li>bin/gerbil:268</li></ul></td>
1756
- </tr>
1757
- <tr>
1758
- <td>content</td>
1759
- <td> <strong>sigh</strong>
1760
-
1761
- <h1>hello #1.1.1.1: &#8220;giki&#8221;</h1>
1762
- My name is &#8220;giki&#8221; and these are my properties:
1763
- <table border="1">
1764
- <tr>
1765
- <th>Property</th>
1766
- <th>Value</th>
1767
- </tr>
1768
- <tr>
1769
- <td>args</td>
1770
- <td>[&#8220;Confused&#8221;]</td>
1771
- </tr>
1772
- <tr>
1773
- <td>index</td>
1774
- <td>&#8220;1.1.1.1&#8221;</td>
1775
- </tr>
1776
- <tr>
1777
- <td>number</td>
1778
- <td>4</td>
1779
- </tr>
1780
- <tr>
1781
- <td>trace</td>
1782
- <td><ul><li>INPUT:7</li><li>bin/gerbil:79:in `content_from_block&#8217;</li><li>bin/gerbil:249:in `hello&#8217;</li><li>INPUT:5</li><li>bin/gerbil:79:in `content_from_block&#8217;</li><li>bin/gerbil:249:in `hello&#8217;</li><li>INPUT:3</li><li>bin/gerbil:79:in `content_from_block&#8217;</li><li>bin/gerbil:249:in `hello&#8217;</li><li>INPUT:1</li><li>bin/gerbil:268</li><li>bin/gerbil:268:in `instance_eval&#8217;</li><li>bin/gerbil:268</li></ul></td>
1783
- </tr>
1784
- <tr>
1785
- <td>content</td>
1786
- <td> Huh?
1787
- </td>
1788
- </tr>
1789
- </table></td>
1790
- </tr>
1791
- </table>
1792
- <h1>hello #1.1.2: &#8220;kojukuj&#8221;</h1>
1793
- My name is &#8220;kojukuj&#8221; and these are my properties:
1794
- <table border="1">
1795
- <tr>
1796
- <th>Property</th>
1797
- <th>Value</th>
1798
- </tr>
1799
- <tr>
1800
- <td>args</td>
1801
- <td>[&#8220;Raving&#8221;]</td>
1802
- </tr>
1803
- <tr>
1804
- <td>index</td>
1805
- <td>&#8220;1.1.2&#8221;</td>
1806
- </tr>
1807
- <tr>
1808
- <td>number</td>
1809
- <td>5</td>
1810
- </tr>
1811
- <tr>
1812
- <td>trace</td>
1813
- <td><ul><li>INPUT:9</li><li>bin/gerbil:79:in `content_from_block&#8217;</li><li>bin/gerbil:249:in `hello&#8217;</li><li>INPUT:3</li><li>bin/gerbil:79:in `content_from_block&#8217;</li><li>bin/gerbil:249:in `hello&#8217;</li><li>INPUT:1</li><li>bin/gerbil:268</li><li>bin/gerbil:268:in `instance_eval&#8217;</li><li>bin/gerbil:268</li></ul></td>
1814
- </tr>
1815
- <tr>
1816
- <td>content</td>
1817
- <td> Oh it&#8217;s <strong>on</strong> now! You&#8217;re going <strong>down</strong>!
1818
- </td>
1819
- </tr>
1820
- </table></td>
1821
- </tr>
1822
- </table>
1823
- <h1>hello #1.2: &#8220;kikefo&#8221;</h1>
1824
- My name is &#8220;kikefo&#8221; and these are my properties:
1825
- <table border="1">
1826
- <tr>
1827
- <th>Property</th>
1828
- <th>Value</th>
1829
- </tr>
1830
- <tr>
1831
- <td>args</td>
1832
- <td>[&#8220;Sleepy&#8221;]</td>
1833
- </tr>
1834
- <tr>
1835
- <td>index</td>
1836
- <td>&#8220;1.2&#8221;</td>
1837
- </tr>
1838
- <tr>
1839
- <td>number</td>
1840
- <td>6</td>
1841
- </tr>
1842
- <tr>
1843
- <td>trace</td>
1844
- <td><ul><li>INPUT:11</li><li>bin/gerbil:79:in `content_from_block&#8217;</li><li>bin/gerbil:249:in `hello&#8217;</li><li>INPUT:1</li><li>bin/gerbil:268</li><li>bin/gerbil:268:in `instance_eval&#8217;</li><li>bin/gerbil:268</li></ul></td>
1845
- </tr>
1846
- <tr>
1847
- <td>content</td>
1848
- <td> <strong>yawn</strong> Just five more minutes&#8230;
1849
-
1850
- <h1>hello #1.2.1: &#8220;rilom&#8221;</h1>
1851
- My name is &#8220;rilom&#8221; and these are my properties:
1852
- <table border="1">
1853
- <tr>
1854
- <th>Property</th>
1855
- <th>Value</th>
1856
- </tr>
1857
- <tr>
1858
- <td>args</td>
1859
- <td>[&#8220;Peaceful&#8221;]</td>
1860
- </tr>
1861
- <tr>
1862
- <td>index</td>
1863
- <td>&#8220;1.2.1&#8221;</td>
1864
- </tr>
1865
- <tr>
1866
- <td>number</td>
1867
- <td>7</td>
1868
- </tr>
1869
- <tr>
1870
- <td>trace</td>
1871
- <td><ul><li>INPUT:13</li><li>bin/gerbil:79:in `content_from_block&#8217;</li><li>bin/gerbil:249:in `hello&#8217;</li><li>INPUT:11</li><li>bin/gerbil:79:in `content_from_block&#8217;</li><li>bin/gerbil:249:in `hello&#8217;</li><li>INPUT:1</li><li>bin/gerbil:268</li><li>bin/gerbil:268:in `instance_eval&#8217;</li><li>bin/gerbil:268</li></ul></td>
1872
- </tr>
1873
- <tr>
1874
- <td>content</td>
1875
- <td> So <em>be</em> happy my friend, <strong>happy</strong>!
1876
-
1877
- <h1>hello #1.2.1.1: &#8220;pelo&#8221;</h1>
1878
- My name is &#8220;pelo&#8221; and these are my properties:
1879
- <table border="1">
1880
- <tr>
1881
- <th>Property</th>
1882
- <th>Value</th>
1883
- </tr>
1884
- <tr>
1885
- <td>args</td>
1886
- <td>[&#8220;Lonely (as you can see, I have no block)&#8221;]</td>
1887
- </tr>
1888
- <tr>
1889
- <td>index</td>
1890
- <td>&#8220;1.2.1.1&#8221;</td>
1891
- </tr>
1892
- <tr>
1893
- <td>number</td>
1894
- <td>8</td>
1895
- </tr>
1896
- <tr>
1897
- <td>trace</td>
1898
- <td><ul><li>INPUT:15</li><li>bin/gerbil:79:in `content_from_block&#8217;</li><li>bin/gerbil:249:in `hello&#8217;</li><li>INPUT:13</li><li>bin/gerbil:79:in `content_from_block&#8217;</li><li>bin/gerbil:249:in `hello&#8217;</li><li>INPUT:11</li><li>bin/gerbil:79:in `content_from_block&#8217;</li><li>bin/gerbil:249:in `hello&#8217;</li><li>INPUT:1</li><li>bin/gerbil:268</li><li>bin/gerbil:268:in `instance_eval&#8217;</li><li>bin/gerbil:268</li></ul></td>
1899
- </tr>
1900
- <tr>
1901
- <td>content</td>
1902
- <td></td>
1903
- </tr>
1904
- </table>
1905
- </td>
1906
- </tr>
1907
- </table></td>
1908
- </tr>
1909
- </table></td>
1910
- </tr>
1911
- </table>
1912
- <h1>hello #2: &#8220;duz&#8221;</h1>
1913
- My name is &#8220;duz&#8221; and these are my properties:
1914
- <table border="1">
1915
- <tr>
1916
- <th>Property</th>
1917
- <th>Value</th>
1918
- </tr>
1919
- <tr>
1920
- <td>args</td>
1921
- <td>[&#8220;Snappy&#8221;]</td>
1922
- </tr>
1923
- <tr>
1924
- <td>index</td>
1925
- <td>&#8220;2&#8221;</td>
1926
- </tr>
1927
- <tr>
1928
- <td>number</td>
1929
- <td>9</td>
1930
- </tr>
1931
- <tr>
1932
- <td>trace</td>
1933
- <td><ul><li>INPUT:17</li><li>bin/gerbil:268</li><li>bin/gerbil:268:in `instance_eval&#8217;</li><li>bin/gerbil:268</li></ul></td>
1934
- </tr>
1935
- <tr>
1936
- <td>content</td>
1937
- <td> Zip! Zap! Wake up, you sap!
1770
+ <h3>hello #1: &#8220;fosi&#8221;</h3>
1771
+
1772
+ <p>My name is &#8220;fosi&#8221; and these are my properties:</p>
1773
+
1774
+
1775
+ <dl style="border-left: thick dotted LightGrey; padding-left: 1em;">
1776
+ <dt>args</dt>
1777
+ <dd><code class="code">[<span style="background-color:#fff0f0"><span style="color:#710">&quot;</span><span style="color:#D20">Pretentious</span><span style="color:#710">&quot;</span></span>, <span style="color:#00D; font-weight:bold">1</span>, <span style="color:#00D; font-weight:bold">2</span>, <span style="color:#00D; font-weight:bold">3</span>]</code></dd>
1778
+
1779
+ <dt>index</dt>
1780
+ <dd><code class="code"><span style="background-color:#fff0f0"><span style="color:#710">&quot;</span><span style="color:#D20">1</span><span style="color:#710">&quot;</span></span></code></dd>
1781
+
1782
+ <dt>number</dt>
1783
+ <dd><code class="code"><span style="color:#00D; font-weight:bold">1</span></code></dd>
1784
+
1785
+ <dt>trace</td>
1786
+ <dd><pre>INPUT:1
1787
+ bin/gerbil:268
1788
+ bin/gerbil:268:in `instance_eval'
1789
+ bin/gerbil:268</pre></dd>
1790
+
1791
+ <dt>content</dt>
1792
+ <dd> <big>I&#8217;m</big> the very first node, oh <em>yes</em> I am! <strong>sneer</strong>
1793
+
1794
+ <h3>hello #1.1: &#8220;ropup&#8221;</h3>
1795
+
1796
+ <p>My name is &#8220;ropup&#8221; and these are my properties:</p>
1797
+
1798
+
1799
+ <dl style="border-left: thick dotted LightGrey; padding-left: 1em;">
1800
+ <dt>args</dt>
1801
+ <dd><code class="code">[<span style="background-color:#fff0f0"><span style="color:#710">&quot;</span><span style="color:#D20">Bashful</span><span style="color:#710">&quot;</span></span>, <span style="color:#00D; font-weight:bold">4</span>, <span style="color:#00D; font-weight:bold">5</span>, <span style="color:#00D; font-weight:bold">6</span>]</code></dd>
1802
+
1803
+ <dt>index</dt>
1804
+ <dd><code class="code"><span style="background-color:#fff0f0"><span style="color:#710">&quot;</span><span style="color:#D20">1.1</span><span style="color:#710">&quot;</span></span></code></dd>
1805
+
1806
+ <dt>number</dt>
1807
+ <dd><code class="code"><span style="color:#00D; font-weight:bold">2</span></code></dd>
1808
+
1809
+ <dt>trace</td>
1810
+ <dd><pre>INPUT:3
1811
+ bin/gerbil:79:in `content_from_block'
1812
+ bin/gerbil:249:in `hello'
1813
+ INPUT:1
1814
+ bin/gerbil:268
1815
+ bin/gerbil:268:in `instance_eval'
1816
+ bin/gerbil:268</pre></dd>
1817
+
1818
+ <dt>content</dt>
1819
+ <dd> Hi, I&#8230; <strong>hide</strong>
1820
+
1821
+ <h3>hello #1.1.1: &#8220;vuzat&#8221;</h3>
1822
+
1823
+ <p>My name is &#8220;vuzat&#8221; and these are my properties:</p>
1824
+
1825
+
1826
+ <dl style="border-left: thick dotted LightGrey; padding-left: 1em;">
1827
+ <dt>args</dt>
1828
+ <dd><code class="code">[<span style="background-color:#fff0f0"><span style="color:#710">&quot;</span><span style="color:#D20">Hopeful</span><span style="color:#710">&quot;</span></span>, <span style="color:#60E; font-weight:bold">0.204484086900208</span>]</code></dd>
1829
+
1830
+ <dt>index</dt>
1831
+ <dd><code class="code"><span style="background-color:#fff0f0"><span style="color:#710">&quot;</span><span style="color:#D20">1.1.1</span><span style="color:#710">&quot;</span></span></code></dd>
1832
+
1833
+ <dt>number</dt>
1834
+ <dd><code class="code"><span style="color:#00D; font-weight:bold">3</span></code></dd>
1835
+
1836
+ <dt>trace</td>
1837
+ <dd><pre>INPUT:5
1838
+ bin/gerbil:79:in `content_from_block'
1839
+ bin/gerbil:249:in `hello'
1840
+ INPUT:3
1841
+ bin/gerbil:79:in `content_from_block'
1842
+ bin/gerbil:249:in `hello'
1843
+ INPUT:1
1844
+ bin/gerbil:268
1845
+ bin/gerbil:268:in `instance_eval'
1846
+ bin/gerbil:268</pre></dd>
1847
+
1848
+ <dt>content</dt>
1849
+ <dd> <strong>sigh</strong>
1850
+
1851
+ <h3>hello #1.1.1.1: &#8220;siji&#8221;</h3>
1852
+
1853
+ <p>My name is &#8220;siji&#8221; and these are my properties:</p>
1854
+
1855
+
1856
+ <dl style="border-left: thick dotted LightGrey; padding-left: 1em;">
1857
+ <dt>args</dt>
1858
+ <dd><code class="code">[<span style="background-color:#fff0f0"><span style="color:#710">&quot;</span><span style="color:#D20">Confused</span><span style="color:#710">&quot;</span></span>, <span style="color:#60E; font-weight:bold">0.213170376406466</span>]</code></dd>
1859
+
1860
+ <dt>index</dt>
1861
+ <dd><code class="code"><span style="background-color:#fff0f0"><span style="color:#710">&quot;</span><span style="color:#D20">1.1.1.1</span><span style="color:#710">&quot;</span></span></code></dd>
1862
+
1863
+ <dt>number</dt>
1864
+ <dd><code class="code"><span style="color:#00D; font-weight:bold">4</span></code></dd>
1865
+
1866
+ <dt>trace</td>
1867
+ <dd><pre>INPUT:7
1868
+ bin/gerbil:79:in `content_from_block'
1869
+ bin/gerbil:249:in `hello'
1870
+ INPUT:5
1871
+ bin/gerbil:79:in `content_from_block'
1872
+ bin/gerbil:249:in `hello'
1873
+ INPUT:3
1874
+ bin/gerbil:79:in `content_from_block'
1875
+ bin/gerbil:249:in `hello'
1876
+ INPUT:1
1877
+ bin/gerbil:268
1878
+ bin/gerbil:268:in `instance_eval'
1879
+ bin/gerbil:268</pre></dd>
1880
+
1881
+ <dt>content</dt>
1882
+ <dd> Huh?
1883
+ </dd>
1884
+ </dl></dd>
1885
+ </dl>
1886
+ <h3>hello #1.1.2: &#8220;dot&#8221;</h3>
1887
+
1888
+ <p>My name is &#8220;dot&#8221; and these are my properties:</p>
1889
+
1890
+
1891
+ <dl style="border-left: thick dotted LightGrey; padding-left: 1em;">
1892
+ <dt>args</dt>
1893
+ <dd><code class="code">[<span style="background-color:#fff0f0"><span style="color:#710">&quot;</span><span style="color:#D20">Raving</span><span style="color:#710">&quot;</span></span>, <span style="background-color:#fff0f0"><span style="color:#710">&quot;</span><span style="color:#D20">INPUT</span><span style="color:#710">&quot;</span></span>]</code></dd>
1894
+
1895
+ <dt>index</dt>
1896
+ <dd><code class="code"><span style="background-color:#fff0f0"><span style="color:#710">&quot;</span><span style="color:#D20">1.1.2</span><span style="color:#710">&quot;</span></span></code></dd>
1897
+
1898
+ <dt>number</dt>
1899
+ <dd><code class="code"><span style="color:#00D; font-weight:bold">5</span></code></dd>
1900
+
1901
+ <dt>trace</td>
1902
+ <dd><pre>INPUT:9
1903
+ bin/gerbil:79:in `content_from_block'
1904
+ bin/gerbil:249:in `hello'
1905
+ INPUT:3
1906
+ bin/gerbil:79:in `content_from_block'
1907
+ bin/gerbil:249:in `hello'
1908
+ INPUT:1
1909
+ bin/gerbil:268
1910
+ bin/gerbil:268:in `instance_eval'
1911
+ bin/gerbil:268</pre></dd>
1912
+
1913
+ <dt>content</dt>
1914
+ <dd> Oh it&#8217;s <strong>on</strong> now! You&#8217;re going <strong>down</strong>!
1915
+ </dd>
1916
+ </dl></dd>
1917
+ </dl>
1918
+ <h3>hello #1.2: &#8220;mufo&#8221;</h3>
1919
+
1920
+ <p>My name is &#8220;mufo&#8221; and these are my properties:</p>
1921
+
1922
+
1923
+ <dl style="border-left: thick dotted LightGrey; padding-left: 1em;">
1924
+ <dt>args</dt>
1925
+ <dd><code class="code">[<span style="background-color:#fff0f0"><span style="color:#710">&quot;</span><span style="color:#D20">Sleepy</span><span style="color:#710">&quot;</span></span>, <span style="color:#036; font-weight:bold">Sun</span> <span style="color:#036; font-weight:bold">Jun</span> <span style="color:#00D; font-weight:bold">22</span> <span style="color:#00D; font-weight:bold">17</span>:<span style="color:#00D; font-weight:bold">21</span>:<span style="color:#00D; font-weight:bold">51</span> <span style="color:#00D; font-weight:bold">-0700</span> <span style="color:#00D; font-weight:bold">2008</span>]</code></dd>
1926
+
1927
+ <dt>index</dt>
1928
+ <dd><code class="code"><span style="background-color:#fff0f0"><span style="color:#710">&quot;</span><span style="color:#D20">1.2</span><span style="color:#710">&quot;</span></span></code></dd>
1929
+
1930
+ <dt>number</dt>
1931
+ <dd><code class="code"><span style="color:#00D; font-weight:bold">6</span></code></dd>
1932
+
1933
+ <dt>trace</td>
1934
+ <dd><pre>INPUT:11
1935
+ bin/gerbil:79:in `content_from_block'
1936
+ bin/gerbil:249:in `hello'
1937
+ INPUT:1
1938
+ bin/gerbil:268
1939
+ bin/gerbil:268:in `instance_eval'
1940
+ bin/gerbil:268</pre></dd>
1941
+
1942
+ <dt>content</dt>
1943
+ <dd> <strong>yawn</strong> Just five more minutes&#8230;
1944
+
1945
+ <h3>hello #1.2.1: &#8220;bikofab&#8221;</h3>
1946
+
1947
+ <p>My name is &#8220;bikofab&#8221; and these are my properties:</p>
1948
+
1949
+
1950
+ <dl style="border-left: thick dotted LightGrey; padding-left: 1em;">
1951
+ <dt>args</dt>
1952
+ <dd><code class="code">[<span style="background-color:#fff0f0"><span style="color:#710">&quot;</span><span style="color:#D20">Peaceful</span><span style="color:#710">&quot;</span></span>, <span style="background-color:#fff0f0"><span style="color:#710">&quot;</span><span style="color:#D20">/home/sun/src/gerbil</span><span style="color:#710">&quot;</span></span>]</code></dd>
1953
+
1954
+ <dt>index</dt>
1955
+ <dd><code class="code"><span style="background-color:#fff0f0"><span style="color:#710">&quot;</span><span style="color:#D20">1.2.1</span><span style="color:#710">&quot;</span></span></code></dd>
1956
+
1957
+ <dt>number</dt>
1958
+ <dd><code class="code"><span style="color:#00D; font-weight:bold">7</span></code></dd>
1959
+
1960
+ <dt>trace</td>
1961
+ <dd><pre>INPUT:13
1962
+ bin/gerbil:79:in `content_from_block'
1963
+ bin/gerbil:249:in `hello'
1964
+ INPUT:11
1965
+ bin/gerbil:79:in `content_from_block'
1966
+ bin/gerbil:249:in `hello'
1967
+ INPUT:1
1968
+ bin/gerbil:268
1969
+ bin/gerbil:268:in `instance_eval'
1970
+ bin/gerbil:268</pre></dd>
1971
+
1972
+ <dt>content</dt>
1973
+ <dd> So <em>be</em> happy my friend, <strong>happy</strong>!
1974
+
1975
+ <h3>hello #1.2.1.1: &#8220;nebo&#8221;</h3>
1976
+
1977
+ <p>My name is &#8220;nebo&#8221; and these are my properties:</p>
1978
+
1979
+
1980
+ <dl style="border-left: thick dotted LightGrey; padding-left: 1em;">
1981
+ <dt>args</dt>
1982
+ <dd><code class="code">[<span style="background-color:#fff0f0"><span style="color:#710">&quot;</span><span style="color:#D20">Lonely (as you can see, I have no block)</span><span style="color:#710">&quot;</span></span>]</code></dd>
1983
+
1984
+ <dt>index</dt>
1985
+ <dd><code class="code"><span style="background-color:#fff0f0"><span style="color:#710">&quot;</span><span style="color:#D20">1.2.1.1</span><span style="color:#710">&quot;</span></span></code></dd>
1986
+
1987
+ <dt>number</dt>
1988
+ <dd><code class="code"><span style="color:#00D; font-weight:bold">8</span></code></dd>
1989
+
1990
+ <dt>trace</td>
1991
+ <dd><pre>INPUT:15
1992
+ bin/gerbil:79:in `content_from_block'
1993
+ bin/gerbil:249:in `hello'
1994
+ INPUT:13
1995
+ bin/gerbil:79:in `content_from_block'
1996
+ bin/gerbil:249:in `hello'
1997
+ INPUT:11
1998
+ bin/gerbil:79:in `content_from_block'
1999
+ bin/gerbil:249:in `hello'
2000
+ INPUT:1
2001
+ bin/gerbil:268
2002
+ bin/gerbil:268:in `instance_eval'
2003
+ bin/gerbil:268</pre></dd>
2004
+
2005
+ <dt>content</dt>
2006
+ <dd></dd>
2007
+ </dl>
2008
+ </dd>
2009
+ </dl></dd>
2010
+ </dl></dd>
2011
+ </dl>
2012
+ <h3>hello #2: &#8220;hazeh&#8221;</h3>
2013
+
2014
+ <p>My name is &#8220;hazeh&#8221; and these are my properties:</p>
2015
+
2016
+
2017
+ <dl style="border-left: thick dotted LightGrey; padding-left: 1em;">
2018
+ <dt>args</dt>
2019
+ <dd><code class="code">[<span style="background-color:#fff0f0"><span style="color:#710">&quot;</span><span style="color:#D20">Snappy</span><span style="color:#710">&quot;</span></span>]</code></dd>
2020
+
2021
+ <dt>index</dt>
2022
+ <dd><code class="code"><span style="background-color:#fff0f0"><span style="color:#710">&quot;</span><span style="color:#D20">2</span><span style="color:#710">&quot;</span></span></code></dd>
2023
+
2024
+ <dt>number</dt>
2025
+ <dd><code class="code"><span style="color:#00D; font-weight:bold">9</span></code></dd>
2026
+
2027
+ <dt>trace</td>
2028
+ <dd><pre>INPUT:17
2029
+ bin/gerbil:268
2030
+ bin/gerbil:268:in `instance_eval'
2031
+ bin/gerbil:268</pre></dd>
2032
+
2033
+ <dt>content</dt>
2034
+ <dd> Zip! Zap! Wake up, you sap!
1938
2035
  <em>Whoo I&#8217;m wild!</em> ;-)
1939
- </td>
1940
- </tr>
1941
- </table>
1942
- <h1>hello #3: &#8220;berifu&#8221;</h1>
1943
- My name is &#8220;berifu&#8221; and these are my properties:
1944
- <table border="1">
1945
- <tr>
1946
- <th>Property</th>
1947
- <th>Value</th>
1948
- </tr>
1949
- <tr>
1950
- <td>args</td>
1951
- <td>[&#8220;Independent (no block, no parents, I am <em>free</em>!)&#8221;]</td>
1952
- </tr>
1953
- <tr>
1954
- <td>index</td>
1955
- <td>&#8220;3&#8221;</td>
1956
- </tr>
1957
- <tr>
1958
- <td>number</td>
1959
- <td>10</td>
1960
- </tr>
1961
- <tr>
1962
- <td>trace</td>
1963
- <td><ul><li>INPUT:20</li><li>bin/gerbil:268</li><li>bin/gerbil:268:in `instance_eval&#8217;</li><li>bin/gerbil:268</li></ul></td>
1964
- </tr>
1965
- <tr>
1966
- <td>content</td>
1967
- <td></td>
1968
- </tr>
1969
- </table></div>
2036
+ </dd>
2037
+ </dl>
2038
+ <h3>hello #3: &#8220;jipater&#8221;</h3>
2039
+
2040
+ <p>My name is &#8220;jipater&#8221; and these are my properties:</p>
2041
+
2042
+
2043
+ <dl style="border-left: thick dotted LightGrey; padding-left: 1em;">
2044
+ <dt>args</dt>
2045
+ <dd><code class="code">[<span style="background-color:#fff0f0"><span style="color:#710">&quot;</span><span style="color:#D20">Independent (no block, no parents, I am _free_!)</span><span style="color:#710">&quot;</span></span>]</code></dd>
2046
+
2047
+ <dt>index</dt>
2048
+ <dd><code class="code"><span style="background-color:#fff0f0"><span style="color:#710">&quot;</span><span style="color:#D20">3</span><span style="color:#710">&quot;</span></span></code></dd>
2049
+
2050
+ <dt>number</dt>
2051
+ <dd><code class="code"><span style="color:#00D; font-weight:bold">10</span></code></dd>
2052
+
2053
+ <dt>trace</td>
2054
+ <dd><pre>INPUT:20
2055
+ bin/gerbil:268
2056
+ bin/gerbil:268:in `instance_eval'
2057
+ bin/gerbil:268</pre></dd>
2058
+
2059
+ <dt>content</dt>
2060
+ <dd></dd>
2061
+ </dl>
1970
2062
  That&#8217;s all folks!</div>
1971
2063
  </div></p></div>
1972
2064
  </div></p></div>
@@ -1975,11 +2067,11 @@ That&#8217;s all folks!</div>
1975
2067
  <div class="chapter">
1976
2068
  <h1 class="title">
1977
2069
  Chapter
1978
- <a class="toc" id="Usage" href="#a-606339698">4</a>
2070
+ <a class="list" id="Usage" href="#a-606667348">4</a>
1979
2071
 
1980
2072
  <br/>
1981
2073
 
1982
- <big>Usage</big>
2074
+ <a class="here" href="#Usage"><big>Usage</big></a>
1983
2075
  </h1>
1984
2076
 
1985
2077
  <div class="content"><p>Gerbil is an extensible document generator based on eRuby.</p>
@@ -2042,12 +2134,12 @@ That&#8217;s all folks!</div>
2042
2134
 
2043
2135
 
2044
2136
 
2045
- <p>Gerbil requires its <em>first</em> command-line argument to be either (1) the name of a predefined format or (2) the path to a <a class="xref" href="#SpecFile">format specification file</a>. Predefined formats are simply short-hand names of format specification files located in the <tt>fmt/</tt> subdirectory of the Gerbil installation directory (see <a class="xref" href="#Manifest">Section 2.3: <em>Manifest</em></a>).</p>
2137
+ <p>Gerbil requires its <em>first</em> command-line argument to be either (1) the name of a predefined format or (2) the path to a <a class="xref" href="#SpecFile" title="Section 3.2. Format specification file">format specification file</a>. Predefined formats are simply short-hand names of format specification files located in the <tt>fmt/</tt> subdirectory of the Gerbil installation directory (see <a class="xref" href="#Manifest">Section 2.3. Manifest</a>).</p>
2046
2138
 
2047
2139
 
2048
2140
  <p><div class="section">
2049
2141
  <h2 class="title">
2050
- <a class="toc" id="include" href="#a-606347418">4.1</a>&nbsp;&nbsp;The <strong>include</strong> directive
2142
+ <a class="list" id="include" href="#a-606678468">4.1</a>&nbsp;&nbsp;<a class="here" href="#include">The <strong>include</strong> directive</a>
2051
2143
  </h2>
2052
2144
  <div class="content"><p>The <strong>include</strong> directive allows you to insert the content of an arbitrary file at a certain place in the input document. It is written like this:</p>
2053
2145
 
@@ -2064,27 +2156,27 @@ That&#8217;s all folks!</div>
2064
2156
  <div class="part">
2065
2157
  <h1 class="title">
2066
2158
  Part
2067
- <a class="toc" id="Formats" href="#a-606352338">5</a>
2159
+ <a class="list" id="Formats" href="#a-606682968">5</a>
2068
2160
 
2069
2161
  <br/>
2070
2162
 
2071
- <big>Formats</big>
2163
+ <a class="here" href="#Formats"><big>Formats</big></a>
2072
2164
  </h1>
2073
2165
 
2074
- <div class="content"><p>This section describes the default formats provided along with Gerbil. The format specification files (see <a class="xref" href="#SpecFile">Section 3.2: <em>Format specification file</em></a>) for these formats can be found in the <tt>fmt/</tt> directory of the Gerbil installation directory (see <a class="xref" href="#Manifest">Section 2.3: <em>Manifest</em></a>).</p>
2166
+ <div class="content"><p>This section describes the default formats provided along with Gerbil. The format specification files (see <a class="xref" href="#SpecFile">Section 3.2. Format specification file</a>) for these formats can be found in the <tt>fmt/</tt> directory of the Gerbil installation directory (see <a class="xref" href="#Manifest">Section 2.3. Manifest</a>).</p>
2075
2167
 
2076
2168
 
2077
- <p>These formats are meant to serve as working examples. If you require more functionality from one of these formats, simply make a copy of the corresponding format specification file and edit the copy to suit your needs. If you would like to contribute or discuss your enhancements to these default formats, you can <a class="xref" href="#License">contact the author</a>.</p>
2169
+ <p>These formats are meant to serve as working examples. If you require more functionality from one of these formats, simply make a copy of the corresponding format specification file and edit the copy to suit your needs. If you would like to contribute or discuss your enhancements to these default formats, you can <a class="xref" href="#License" title="Section 1.2. License">contact the author</a>.</p>
2078
2170
 
2079
2171
 
2080
2172
  <p><div class="chapter">
2081
2173
  <h1 class="title">
2082
2174
  Chapter
2083
- <a class="toc" id="html" href="#a-606365408">5.1</a>
2175
+ <a class="list" id="html" href="#a-606694868">5.1</a>
2084
2176
 
2085
2177
  <br/>
2086
2178
 
2087
- <big>HTML</big>
2179
+ <a class="here" href="#html"><big>HTML</big></a>
2088
2180
  </h1>
2089
2181
 
2090
2182
  <div class="content"><p>This format generates a <em>monolithic</em> HTML (technically, it&#8217;s <span class="caps">XHTML 1</span>.0 transitional, but who&#8217;s counting?) document. A monolithic HTML document allows users to easily search for a particular topic using nothing more than their web browser&#8217;s built-in text search mechanism. This facilitates offline reading, where an Internet search engine is not available.</p>
@@ -2098,9 +2190,9 @@ That&#8217;s all folks!</div>
2098
2190
 
2099
2191
  <p><div class="section">
2100
2192
  <h3 class="title">
2101
- <a class="toc" id="Text-to-HTML-conversion" href="#a-606368788">5.1.1</a>&nbsp;&nbsp;Text to HTML conversion
2193
+ <a class="list" id="Text-to-HTML-conversion" href="#a-606697248">5.1.1</a>&nbsp;&nbsp;<a class="here" href="#Text-to-HTML-conversion">Text to HTML conversion</a>
2102
2194
  </h3>
2103
- <div class="content"><p>Inside the <tt>fmt/</tt> subdirectory of the Gerbil installation directory (see <a class="xref" href="#Manifest">Section 2.3: <em>Manifest</em></a>), you will see a <tt>html.rb</tt> file. This file defines a <code class="code"><span style="color:#036; font-weight:bold">String</span>.to_html</code> method which is used to transform text in an input document into HTML.</p>
2195
+ <div class="content"><p>Inside the <tt>fmt/</tt> subdirectory of the Gerbil installation directory (see <a class="xref" href="#Manifest">Section 2.3. Manifest</a>), you will see a <tt>html.rb</tt> file. This file defines a <code class="code"><span style="color:#036; font-weight:bold">String</span>.to_html</code> method which is used to transform text in an input document into HTML.</p>
2104
2196
 
2105
2197
 
2106
2198
  <p>The default implementation of the <code class="code"><span style="color:#036; font-weight:bold">String</span>.to_html</code> method is based on the <a href="http://whytheluckystiff.net/ruby/redcloth/">Textile</a> markup system. If you do not like Textile or wish to use a different markup system for text in your documents, then simply edit the <tt>html.rb</tt> file and adjust the source code of the default <code class="code"><span style="color:#036; font-weight:bold">String</span>.to_html</code> method accordingly.</p>
@@ -2123,7 +2215,7 @@ That&#8217;s all folks!</div>
2123
2215
 
2124
2216
  <p><div class="section">
2125
2217
  <h4 class="title">
2126
- <a class="toc" id="Syntax-coloring-for-source-code" href="#a-606376608">5.1.1.1</a>&nbsp;&nbsp;Syntax coloring for source code
2218
+ <a class="list" id="Syntax-coloring-for-source-code" href="#a-606700558">5.1.1.1</a>&nbsp;&nbsp;<a class="here" href="#Syntax-coloring-for-source-code">Syntax coloring for source code</a>
2127
2219
  </h4>
2128
2220
  <div class="content"><p>Syntax coloring is <em>automatically added</em> to source code found inside the <strong>&lt;code&gt;</strong> and <strong>&lt;/code&gt;</strong> HTML tags. Note that in Textile, any text enclosed within a pair of at-signs (&#64; and &#64;) is also considered to be source code.</p>
2129
2221
 
@@ -2141,7 +2233,7 @@ The following programming languages are currently supported by <a href="http://c
2141
2233
 
2142
2234
  <p><div class="section">
2143
2235
  <h5 class="title">
2144
- <a class="toc" id="Specifying-the-programming-language" href="#a-606380538">5.1.1.1.1</a>&nbsp;&nbsp;Specifying the programming language
2236
+ <a class="list" id="Specifying-the-programming-language" href="#a-606704368">5.1.1.1.1</a>&nbsp;&nbsp;<a class="here" href="#Specifying-the-programming-language">Specifying the programming language</a>
2145
2237
  </h5>
2146
2238
  <div class="content"><p>Because different programming languages have different syntax coloring schemes, you can specify the language of your source code using the <code class="code">lang</code> attribute to ensure that only the appropriate coloring scheme is used. Note that unless the <code class="code">lang</code> attribute is specified, <em>Ruby</em> is assumed to be the programming language of all source code by default.</p>
2147
2239
 
@@ -2229,7 +2321,7 @@ int main(int argc, char **argv) {
2229
2321
  </div>
2230
2322
  <div class="section">
2231
2323
  <h4 class="title">
2232
- <a class="toc" id="Smart-sizing-of-source-code" href="#a-606385258">5.1.1.2</a>&nbsp;&nbsp;Smart sizing of source code
2324
+ <a class="list" id="Smart-sizing-of-source-code" href="#a-606707088">5.1.1.2</a>&nbsp;&nbsp;<a class="here" href="#Smart-sizing-of-source-code">Smart sizing of source code</a>
2233
2325
  </h4>
2234
2326
  <div class="content"><p>Source code is <em>automatically sized</em> to be displayed as either a line or paragraph of text, depending on whether it contains line breaks.</p>
2235
2327
 
@@ -2248,16 +2340,16 @@ int main(int argc, char **argv) {
2248
2340
  </div>
2249
2341
  <div class="section">
2250
2342
  <h4 class="title">
2251
- <a class="toc" id="Protecting-verbatim-text" href="#a-606389488">5.1.1.3</a>&nbsp;&nbsp;Protecting verbatim text
2343
+ <a class="list" id="Protecting-verbatim-text" href="#a-606709698">5.1.1.3</a>&nbsp;&nbsp;<a class="here" href="#Protecting-verbatim-text">Protecting verbatim text</a>
2252
2344
  </h4>
2253
2345
  <div class="content">Sometimes you just need to protect some text from being mangled by the text-to-HTML conversion process . In such cases, you can wrap the text you want to proctect within <strong>&lt;noformat&gt;</strong> and <strong>&lt;/noformat&gt;</strong> tags.</div>
2254
2346
  </div></p></div>
2255
2347
  </div>
2256
2348
  <div class="section">
2257
2349
  <h3 class="title">
2258
- <a class="toc" id="Parameters" href="#a-606394628">5.1.2</a>&nbsp;&nbsp;Parameters
2350
+ <a class="list" id="Parameters" href="#a-606712438">5.1.2</a>&nbsp;&nbsp;<a class="here" href="#Parameters">Parameters</a>
2259
2351
  </h3>
2260
- <div class="content">The HTML format accepts the following document parameters.
2352
+ <div class="content"><p>The HTML format accepts the following document parameters.</p>
2261
2353
 
2262
2354
 
2263
2355
  <table border="1">
@@ -2301,13 +2393,13 @@ int main(int argc, char **argv) {
2301
2393
  <td> <code class="code"><span style="color:#d70; font-weight:bold">$use_icons</span></code> </td>
2302
2394
  <td> Boolean </td>
2303
2395
  <td> <code class="code"><span style="color:#038; font-weight:bold">true</span></code> </td>
2304
- <td> Use <a href="http://tango.freedesktop.org/Tango_Icon_Library">Tango icons</a> in admonitions (see <a class="xref" href="#Admonitions">Section 5.1.4.3: <em>Admonitions</em></a>)? </td>
2396
+ <td> Use <a href="http://tango.freedesktop.org/Tango_Icon_Library">Tango icons</a> in admonitions (see <a class="xref" href="#Admonitions">Section 5.1.4.3. Admonitions</a>)? </td>
2305
2397
  </tr>
2306
2398
  </table></div>
2307
2399
  </div>
2308
2400
  <div class="section">
2309
2401
  <h3 class="title">
2310
- <a class="toc" id="Methods" href="#a-606399218">5.1.3</a>&nbsp;&nbsp;Methods
2402
+ <a class="list" id="Methods" href="#a-606725538">5.1.3</a>&nbsp;&nbsp;<a class="here" href="#Methods">Methods</a>
2311
2403
  </h3>
2312
2404
  <div class="content">The HTML format provides the following methods. In the method declarations shown below,
2313
2405
  <ul>
@@ -2351,10 +2443,16 @@ of figures that points this node.
2351
2443
  </td>
2352
2444
  </tr>
2353
2445
  <tr>
2354
- <td> <code class="code"><span style="color:#036; font-weight:bold">Icon</span><span style="color:#888">#to_html(aAttributes = {})</span></code> </td>
2446
+ <td> <code class="code"><span style="color:#036; font-weight:bold">Icon</span><span style="color:#888">#css_class()</span></code> </td>
2447
+ <td> <p>
2448
+ Returns the CSS class for this icon.
2449
+ </p>
2450
+ </td>
2451
+ </tr>
2452
+ <tr>
2453
+ <td> <code class="code"><span style="color:#036; font-weight:bold">Hash</span><span style="color:#888">#to_html_atts()</span></code> </td>
2355
2454
  <td> <p>
2356
- Returns a HTML image tag containing embedded image data. The given
2357
- attributes (name =&gt; value) are applied to the HTML tag declaration.
2455
+ Transforms this hash into a string of HTML attribute key=value pairs.
2358
2456
  </p>
2359
2457
  </td>
2360
2458
  </tr>
@@ -2403,24 +2501,24 @@ ruby.
2403
2501
  <div class="chapter">
2404
2502
  <h1 class="title">
2405
2503
  Chapter
2406
- <a class="toc" id="html.nodes" href="#a-607016588">5.1.4</a>
2504
+ <a class="list" id="html.nodes" href="#a-607360708">5.1.4</a>
2407
2505
 
2408
2506
  <br/>
2409
2507
 
2410
- <big>Nodes</big>
2508
+ <a class="here" href="#html.nodes"><big>Nodes</big></a>
2411
2509
  </h1>
2412
2510
 
2413
2511
  <div class="content">Unless otherwise noted, all nodes defined by the HTML format accept two arguments, in this order:
2414
2512
  <ol>
2415
- <li>a title or name for the node</li>
2416
- <li>a unique identifier for the node</li>
2513
+ <li>a required <strong>title</strong> for the node</li>
2514
+ <li>an optional <strong>unique identifier</strong> for the node</li>
2417
2515
  </ol>
2418
2516
 
2419
2517
 
2420
- <p>The second argument is used by the cross-referencing nodes (see <a class="xref" href="#html.nodes.xref">Section 5.1.4.1.4: <em>xref</em></a> and <a class="xref" href="#html.nodes.cite">Section 5.1.4.5.2: <em>cite</em></a>), which allow you to refer to another node in the document by its unique identifier.</p>
2518
+ <p>The second argument is used by the cross-referencing nodes (see <a class="xref" href="#html.nodes.xref">Section 5.1.4.1.4. xref</a> and <a class="xref" href="#html.nodes.cite">Section 5.1.4.5.2. cite</a>), which allow you to refer to another node in the document by its unique identifier.</p>
2421
2519
 
2422
2520
 
2423
- <p>Furthermore, node definitions in the HTML format have two additional parameters:</p>
2521
+ <p>Furthermore, <a class="xref" href="#SpecFile.nodes" title="Section 3.2.1. Node definition">node definitions</a> in the HTML format have two additional parameters:</p>
2424
2522
 
2425
2523
 
2426
2524
  <table border="1">
@@ -2446,37 +2544,37 @@ ruby.
2446
2544
 
2447
2545
  <p><div class="section">
2448
2546
  <h4 class="title">
2449
- <a class="toc" id="Structure" href="#a-607033098">5.1.4.1</a>&nbsp;&nbsp;Structure
2547
+ <a class="list" id="Structure" href="#a-607367068">5.1.4.1</a>&nbsp;&nbsp;<a class="here" href="#Structure">Structure</a>
2450
2548
  </h4>
2451
2549
  <div class="content"><p>The nodes described in this section form the overall structure of the output document.</p>
2452
2550
 
2453
2551
 
2454
2552
  <p><div class="section">
2455
2553
  <h5 class="title">
2456
- <a class="toc" id="html.nodes.header" href="#a-607036378">5.1.4.1.1</a>&nbsp;&nbsp;header
2554
+ <a class="list" id="html.nodes.header" href="#a-607368768">5.1.4.1.1</a>&nbsp;&nbsp;<a class="here" href="#html.nodes.header">header</a>
2457
2555
  </h5>
2458
2556
  <div class="content">This node overrides the logo, title, list of authors, and date when the document was written, all of which are shown at the top of the document.</div>
2459
2557
  </div>
2460
2558
  <div class="section">
2461
2559
  <h5 class="title">
2462
- <a class="toc" id="html.nodes.footer" href="#a-607038448">5.1.4.1.2</a>&nbsp;&nbsp;footer
2560
+ <a class="list" id="html.nodes.footer" href="#a-607370838">5.1.4.1.2</a>&nbsp;&nbsp;<a class="here" href="#html.nodes.footer">footer</a>
2463
2561
  </h5>
2464
2562
  <div class="content">This node overrides (1) the date when this document was generated and (2) the hyperlink to the Gerbil website, shown at the bottom of the document. The hyperlink is there as a way of saying thanks for Gerbil, the <em>wonderful</em> little utility you have grown so fond of! ;-)</div>
2465
2563
  </div>
2466
2564
  <div class="section">
2467
2565
  <h5 class="title">
2468
- <a class="toc" id="html.nodes.abstract" href="#a-607040548">5.1.4.1.3</a>&nbsp;&nbsp;abstract
2566
+ <a class="list" id="html.nodes.abstract" href="#a-607372938">5.1.4.1.3</a>&nbsp;&nbsp;<a class="here" href="#html.nodes.abstract">abstract</a>
2469
2567
  </h5>
2470
2568
  <div class="content">A summary of the entire document. This is what most readers will <em>skim</em> through, if you are lucky. Alas, nobody reads entire documents these days! :-(</div>
2471
2569
  </div>
2472
2570
  <div class="section">
2473
2571
  <h5 class="title">
2474
- <a class="toc" id="html.nodes.xref" href="#a-607042678">5.1.4.1.4</a>&nbsp;&nbsp;xref
2572
+ <a class="list" id="html.nodes.xref" href="#a-607375068">5.1.4.1.4</a>&nbsp;&nbsp;<a class="here" href="#html.nodes.xref">xref</a>
2475
2573
  </h5>
2476
2574
  <div class="content"><p>A cross-reference; a hyperlink that takes you to any node in the document.</p>
2477
2575
 
2478
2576
 
2479
- <p>The first argument of this node is either the unique identifier of the node you wish to cross-reference. If no nodes in the document have the given identifier, then the titles of all nodes in the document are searched. If even that fails, then an error will be raised.</p>
2577
+ <p>The first argument of this node is either the unique identifier or the user-defined title of the node you wish to cross-reference. If no nodes in the document have the given identifier or user-defined title, then an error will be raised.</p>
2480
2578
 
2481
2579
 
2482
2580
  <p>The second argument of this node overrides the default link text of the cross-reference.</p>
@@ -2488,7 +2586,7 @@ ruby.
2488
2586
  <pre>&lt;%= xref "SpecFile" %&gt;</pre>
2489
2587
 
2490
2588
 
2491
- <p>appears in the output document like this: <a class="xref" href="#SpecFile">Section 3.2: <em>Format specification file</em></a>.</p>
2589
+ <p>appears in the output document like this: <a class="xref" href="#SpecFile">Section 3.2. Format specification file</a>.</p>
2492
2590
 
2493
2591
 
2494
2592
  <p>As another example, this node in the input document:</p>
@@ -2497,19 +2595,19 @@ ruby.
2497
2595
  <pre>&lt;%= xref "SpecFile", "custom link text" %&gt;</pre>
2498
2596
 
2499
2597
 
2500
- <p>appears in the output document like this: <a class="xref" href="#SpecFile">custom link text</a>.</p></div>
2598
+ <p>appears in the output document like this: <a class="xref" href="#SpecFile" title="Section 3.2. Format specification file">custom link text</a>.</p></div>
2501
2599
  </div></p></div>
2502
2600
  </div>
2503
2601
  <div class="section">
2504
2602
  <h4 class="title">
2505
- <a class="toc" id="Organization" href="#a-607048578">5.1.4.2</a>&nbsp;&nbsp;Organization
2603
+ <a class="list" id="Organization" href="#a-607380968">5.1.4.2</a>&nbsp;&nbsp;<a class="here" href="#Organization">Organization</a>
2506
2604
  </h4>
2507
- <div class="content"><p>The nodes described in this section are meant to help organize the document&#8217;s content logically.</p>
2605
+ <div class="content"><p>The nodes described in this section are meant to help organize the document&#8217;s content logically. Based on how deeply these nodes are nested in the document, their heading will be larger (shallow depth) or smaller (deep depth).</p>
2508
2606
 
2509
2607
 
2510
2608
  <p><div class="section">
2511
2609
  <h5 class="title">
2512
- <a class="toc" id="html.nodes.part" href="#a-607050288">5.1.4.2.1</a>&nbsp;&nbsp;part
2610
+ <a class="list" id="html.nodes.part" href="#a-607382698">5.1.4.2.1</a>&nbsp;&nbsp;<a class="here" href="#html.nodes.part">part</a>
2513
2611
  </h5>
2514
2612
  <div class="content"><p>A collection of chapters.</p>
2515
2613
 
@@ -2517,19 +2615,19 @@ ruby.
2517
2615
  <p><div class="part">
2518
2616
  <h1 class="title">
2519
2617
  Part
2520
- <a class="toc" id="An-example" href="#a-607051948">5.1.4.2.1.1</a>
2618
+ <a class="list" id="An-example" href="#a-607384378">5.1.4.2.1.1</a>
2521
2619
 
2522
2620
  <br/>
2523
2621
 
2524
- <big>An example</big>
2622
+ <a class="here" href="#An-example"><big>An example</big></a>
2525
2623
  </h1>
2526
2624
 
2527
- <div class="content">This is what a <strong>part</strong> node appears like.</div>
2625
+ <div class="content">This is how a <strong>part</strong> node appears.</div>
2528
2626
  </div></p></div>
2529
2627
  </div>
2530
2628
  <div class="section">
2531
2629
  <h5 class="title">
2532
- <a class="toc" id="html.nodes.chapter" href="#a-607054458">5.1.4.2.2</a>&nbsp;&nbsp;chapter
2630
+ <a class="list" id="html.nodes.chapter" href="#a-607389148">5.1.4.2.2</a>&nbsp;&nbsp;<a class="here" href="#html.nodes.chapter">chapter</a>
2533
2631
  </h5>
2534
2632
  <div class="content"><p>A collection of sections.</p>
2535
2633
 
@@ -2537,46 +2635,46 @@ ruby.
2537
2635
  <p><div class="chapter">
2538
2636
  <h1 class="title">
2539
2637
  Chapter
2540
- <a class="toc" id="An-example-607136108" href="#a-607056148">5.1.4.2.2.1</a>
2638
+ <a class="list" id="An-example-607958288" href="#a-607392628">5.1.4.2.2.1</a>
2541
2639
 
2542
2640
  <br/>
2543
2641
 
2544
- <big>An example</big>
2642
+ <a class="here" href="#An-example-607958288"><big>An example</big></a>
2545
2643
  </h1>
2546
2644
 
2547
- <div class="content">This is what a <strong>chapter</strong> node appears like.</div>
2645
+ <div class="content">This is how a <strong>chapter</strong> node appears.</div>
2548
2646
  </div></p></div>
2549
2647
  </div>
2550
2648
  <div class="section">
2551
2649
  <h5 class="title">
2552
- <a class="toc" id="html.nodes.section" href="#a-607058658">5.1.4.2.3</a>&nbsp;&nbsp;section
2650
+ <a class="list" id="html.nodes.section" href="#a-607398988">5.1.4.2.3</a>&nbsp;&nbsp;<a class="here" href="#html.nodes.section">section</a>
2553
2651
  </h5>
2554
2652
  <div class="content"><p>A collection of paragraphs about a particular topic.</p>
2555
2653
 
2556
2654
 
2557
2655
  <p><div class="section">
2558
2656
  <h6 class="title">
2559
- <a class="toc" id="An-example-607242568" href="#a-607060378">5.1.4.2.3.1</a>&nbsp;&nbsp;An example
2657
+ <a class="list" id="An-example-607983638" href="#a-607404598">5.1.4.2.3.1</a>&nbsp;&nbsp;<a class="here" href="#An-example-607983638">An example</a>
2560
2658
  </h6>
2561
- <div class="content">This is what a <strong>section</strong> node appears like.</div>
2659
+ <div class="content">This is how a <strong>section</strong> node appears.</div>
2562
2660
  </div></p></div>
2563
2661
  </div>
2564
2662
  <div class="section">
2565
2663
  <h5 class="title">
2566
- <a class="toc" id="html.nodes.paragraph" href="#a-607062888">5.1.4.2.4</a>&nbsp;&nbsp;paragraph
2664
+ <a class="list" id="html.nodes.paragraph" href="#a-607413468">5.1.4.2.4</a>&nbsp;&nbsp;<a class="here" href="#html.nodes.paragraph">paragraph</a>
2567
2665
  </h5>
2568
2666
  <div class="content"><p>A collection of sentences about a particular idea.</p>
2569
2667
 
2570
2668
 
2571
2669
  <p><div class="paragraph">
2572
- <p class="title">An example</p>
2573
- <div class="content">This is what a <strong>paragraph</strong> node appears like.</div>
2670
+ <p class="title" id="An-example-608006348"><a class="here" href="#An-example-608006348">An example</a></p>
2671
+ <div class="content">This is how a <strong>paragraph</strong> node appears. Notice that there is no LaTeX-style index number in the heading of this <strong>paragraph</strong> node.</div>
2574
2672
  </div></p></div>
2575
2673
  </div></p></div>
2576
2674
  </div>
2577
2675
  <div class="section">
2578
2676
  <h4 class="title">
2579
- <a class="toc" id="Admonitions" href="#a-607067128">5.1.4.3</a>&nbsp;&nbsp;Admonitions
2677
+ <a class="list" id="Admonitions" href="#a-607429568">5.1.4.3</a>&nbsp;&nbsp;<a class="here" href="#Admonitions">Admonitions</a>
2580
2678
  </h4>
2581
2679
  <div class="content"><p>An admonition is basically a box that is indented more deeply than the text surrounding it. It is typically used to convey extraneous or pertinent information about the application of ideas discussed in the surrounding text.</p>
2582
2680
 
@@ -2587,78 +2685,20 @@ ruby.
2587
2685
  <p>
2588
2686
  <div class="section">
2589
2687
  <h5 class="title">
2590
- <a class="toc" id="html.nodes.warning" href="#a-607072748">5.1.4.3.1</a>&nbsp;&nbsp;warning
2688
+ <a class="list" id="html.nodes.warning" href="#a-607444018">5.1.4.3.1</a>&nbsp;&nbsp;<a class="here" href="#html.nodes.warning">warning</a>
2591
2689
  </h5>
2592
2690
  <div class="content"><p>Use a <strong>warning</strong> node when &#8220;data loss could occur if you follow the procedure being described.&#8221; <sup>[<a class="cite" href="#KDE.admonitions">1</a>]</sup></p>
2593
2691
 
2594
2692
 
2595
2693
  <p><div class="warning">
2596
- <p class="title"><a class="toc" id="An-example-607316558" href="#a-607078588">Warning 1</a>.&nbsp;&nbsp;An example</p>
2597
-
2598
- <img src="data:image/png;base64,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
- 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
- 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
- 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
- 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
- fVWvlhZV5f85OGtSi4iMwT4LDtsi9wObDaQC1X4AW+S2BZPAtUD1vIFjo3Ca
2604
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- mp1aulBU5PV7H9mb6HIctGr5dq5Ra7CTazS5UUM9phFfLdfpeeJujLv3PZCI
2616
- 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
- ltOdPDAmsn9JAbbIa/c9tCeumRkUWdEA7GTldqSpietgBDOdY9fe++OWyGsd
2618
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- qk371eW4kFUlXiMfbUgj1edIKLqAXY1SjQoE1ViuxlIoFkLpgusAWSrWb7lf
2652
- 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
- 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
2654
- " class="icon"/>
2655
-
2656
- <div class="content">This is what a <strong>warning</strong> node appears like.</div>
2694
+ <p class="title"><a class="list" id="An-example-608053408" href="#a-607453388">Warning 1</a>.&nbsp;&nbsp;<a class="here" href="#An-example-608053408">An example</a></p>
2695
+
2696
+ <div class="content icon-warning">This is how a <strong>warning</strong> node appears.</div>
2657
2697
  </div></p></div>
2658
2698
  </div>
2659
2699
  <div class="section">
2660
2700
  <h5 class="title">
2661
- <a class="toc" id="html.nodes.caution" href="#a-607085348">5.1.4.3.2</a>&nbsp;&nbsp;caution
2701
+ <a class="list" id="html.nodes.caution" href="#a-607458198">5.1.4.3.2</a>&nbsp;&nbsp;<a class="here" href="#html.nodes.caution">caution</a>
2662
2702
  </h5>
2663
2703
  <div class="content"><blockquote>
2664
2704
  <p>A note of caution. Use this for example when the reader may lose easily recovered or replaceable information (e.g. user settings), or when they could cause data loss if they don&#8217;t correctly follow the procedure being outlined. <sup>[<a class="cite" href="#KDE.admonitions">1</a>]</sup></p>
@@ -2666,68 +2706,14 @@ rBDpMPlaalVjI/la9EMCgnZW7hT+A5SLlrQmK/qkAAAAAElFTkSuQmCC
2666
2706
 
2667
2707
 
2668
2708
  <p><div class="caution">
2669
- <p class="title"><a class="toc" id="An-example-607346048" href="#a-607096198">Caution 1</a>.&nbsp;&nbsp;An example</p>
2670
-
2671
- <img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAABHNCSVQICAgI
2672
- fAhkiAAAAAlwSFlzAAAN1wAADdcBQiibeAAAABl0RVh0U29mdHdhcmUAd3d3
2673
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- a+XNzc7Lhw6hIhHQNMwXX8SxYwcYBijF5SNHKK6rcwq8tEvEkQrXKRGwBx5M
2683
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- +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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- MhfnrBHYJeIxNe3f9W1trsD+/UwNDoKuk75/P3pR0TVBRIQLFy7w9ttvA9Da
2711
- 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
- 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
- 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
- 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
- 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
- +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
- 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
- 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
- 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
- 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
- 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
2722
- 4xicOQAAAABJRU5ErkJggg==
2723
- " class="icon"/>
2724
-
2725
- <div class="content">This is what a <strong>caution</strong> node appears like.</div>
2709
+ <p class="title"><a class="list" id="An-example-606627708" href="#a-607466448">Caution 1</a>.&nbsp;&nbsp;<a class="here" href="#An-example-606627708">An example</a></p>
2710
+
2711
+ <div class="content icon-caution">This is how a <strong>caution</strong> node appears.</div>
2726
2712
  </div></p></div>
2727
2713
  </div>
2728
2714
  <div class="section">
2729
2715
  <h5 class="title">
2730
- <a class="toc" id="html.nodes.important" href="#a-607102958">5.1.4.3.3</a>&nbsp;&nbsp;important
2716
+ <a class="list" id="html.nodes.important" href="#a-607468758">5.1.4.3.3</a>&nbsp;&nbsp;<a class="here" href="#html.nodes.important">important</a>
2731
2717
  </h5>
2732
2718
  <div class="content"><p>Use an <strong>important</strong> node when:</p>
2733
2719
 
@@ -2738,72 +2724,14 @@ ECQGPj690VUrcfw2ZYuXhICbYRZiUUhEYFLNkjYs6s3c/5J97/9q8F/RUcwR
2738
2724
 
2739
2725
 
2740
2726
  <p><div class="important">
2741
- <p class="title"><a class="toc" id="An-example-607377118" href="#a-607116008">Important 1</a>.&nbsp;&nbsp;An example</p>
2742
-
2743
- <img src="data:image/png;base64,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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- d/MsRkAKugqa6gMpxRDKmwGlGADAKIF4PGEAGLYUwIBhPRLsFIlAkHM3wnVQ
2772
- bBqI+a1nmGgBHshEIgw+fgVQnGCCBCYRItEEB3DHUoDOcT0eVXc71BBgq09K
2773
- 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
- 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
- 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
- +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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- qTvNEuCzBFICdBNpEcn1RUD6N6m5vGG6p0SknjVYzD5W5IEF1oHZ2UgxETVf
2796
- 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
- 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
2798
- 2wAAAABJRU5ErkJggg==
2799
- " class="icon"/>
2800
-
2801
- <div class="content">This is what a <strong>important</strong> node appears like.</div>
2727
+ <p class="title"><a class="list" id="An-example-606810938" href="#a-607479468">Important 1</a>.&nbsp;&nbsp;<a class="here" href="#An-example-606810938">An example</a></p>
2728
+
2729
+ <div class="content icon-important">This is how a <strong>important</strong> node appears.</div>
2802
2730
  </div></p></div>
2803
2731
  </div>
2804
2732
  <div class="section">
2805
2733
  <h5 class="title">
2806
- <a class="toc" id="html.nodes.note" href="#a-607121388">5.1.4.3.4</a>&nbsp;&nbsp;note
2734
+ <a class="list" id="html.nodes.note" href="#a-607483388">5.1.4.3.4</a>&nbsp;&nbsp;<a class="here" href="#html.nodes.note">note</a>
2807
2735
  </h5>
2808
2736
  <div class="content"><p>Use a <strong>note</strong> node to convey:</p>
2809
2737
 
@@ -2814,73 +2742,14 @@ YhZhYHbQZiOelwCTEJhIpuI+JYCZyKe2KNkEWIlIxTrPDJNc+B/DI2njy1uQ
2814
2742
 
2815
2743
 
2816
2744
  <p><div class="note">
2817
- <p class="title"><a class="toc" id="An-example-607412768" href="#a-607132188">Note 2</a>.&nbsp;&nbsp;An example</p>
2818
-
2819
- <img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAABHNCSVQICAgI
2820
- fAhkiAAAAAlwSFlzAAAN1wAADdcBQiibeAAAABl0RVh0U29mdHdhcmUAd3d3
2821
- Lmlua3NjYXBlLm9yZ5vuPBoAAAmCSURBVGiB1ZltbJXlGcd/9/N+Tlssh1Ja
2822
- hNEJaK2UFxFptqC2wGCSTWdM3DSQzWVDEzVxy4xfjNkHQ8xMnEEXviwZ62Rj
2823
- 6siWTcVBZeJA5yBQpOWlKNZSaEvpyyk95zwv970Pp+fY5/S0tFBkXsmTc67n
2824
- eu77+f/u6349Ryil+Cqbdq0FXKldEuClp+3nfvVz/eJLT9vPXQv/igFc13tq
2825
- w4/ujLqu99S18C9lRr6br7zyyi2WZb2eSqUqpVSUlE5BSmW8/PLL6sv2bdtu
2826
- TiaT9z/++ONN486AZVm/XLiw+qZlt98Wun/bsqUhf+nSJSF/ya2LQv6ixQtD
2827
- /sJFC0L+guqqkF91S2XIr6y6idlfm1Vp2/Yz+XSOCiCEqDJMQ3ze+hm6bnC+
2828
- sx9d1zl+vBlN1znf2Y+m6TQfa0LTvvCbmo6G/KNHj4T8Ix83hvzGI4dD/uHG
2829
- QyG/peUElmUJIURlPp2jAkgpiwXg+R5FM9dRv3U/heXrkFJSWHZ32i/7NlJK
2830
- CsrWUr91P9EZa5FSEildQ/3W/USmfwspJc701dRv3Y9dshopJda0VdRv3Y8V
2831
- W4mUEjO2kvqt+zCm1iGlxCiu5fe/24defBeu6yHSkopHAxD51oEtW7bEb1++
2832
- rLC5+ShBEKCU+uJCgWJCvlJD9/iinlw/o2O4b5omixct4fixkz2PPPJILB9A
2833
- 3kEspYzOmjWbxYuWjIiNtfBdjdjg4EWam44XjhYf0YU2b948xTTNoGRaSbjl
2834
- R2mlqx0rLCxC0zR98+bNdj6AERkIgiDmOI6nlDK/7NbOF1NKYdt2KplMxoCz
2835
- ufERAKZpxiKRSDC8wnfeeWfUl06W0FxbtWpV9tloNOoPDg6OD0BKGYtEIqGX
2836
- rV69etKFXio2vGs5jqOklOMbxJqmxaLRqBheSRAEo77sSoWOZkKI7DORSERo
2837
- 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
- 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
- 3cTOV58xe9tPPvnwuodUxFX89cOd/vq6orX1DfG9IwB0XS+zbTs0kHbt2jVh
2840
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- e/bsGdcs03ZiH62H/sJPH12PXXAd0r2IXVZFz5E36BkIaDnr0trl09kXUF6x
2858
- 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
- Mvi+z4H3dtD1yXus+e59WJaBn+hBc+MoBUfaFM2nk1y4KKlaupq1teuZWjIT
2860
- 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
- rutyaN/f2Pv3Lew9fJ7Dxzr4/pqv0xt36e4ZoOt8D6mUy7zFa6m5dR0FRVPx
2862
- lUFvby+maWJZFqZpZr9blkVmIR0OY5qm6XnetDEBlFLllmWNaO29e/eS8xy+
2863
- 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
- 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
- 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
- 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
- z5s+JkAqlZqaycDlTKO5gsZTbjynvkwGXNedOiaA67pT8gFMBOJqxDIAqVRq
2868
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
2876
- " class="icon"/>
2877
-
2878
- <div class="content">This is what a <strong>note</strong> node appears like.</div>
2745
+ <p class="title"><a class="list" id="An-example-606918718" href="#a-607489938">Note 2</a>.&nbsp;&nbsp;<a class="here" href="#An-example-606918718">An example</a></p>
2746
+
2747
+ <div class="content icon-note">This is how a <strong>note</strong> node appears.</div>
2879
2748
  </div></p></div>
2880
2749
  </div>
2881
2750
  <div class="section">
2882
2751
  <h5 class="title">
2883
- <a class="toc" id="html.nodes.tip" href="#a-607139008">5.1.4.3.5</a>&nbsp;&nbsp;tip
2752
+ <a class="list" id="html.nodes.tip" href="#a-607495558">5.1.4.3.5</a>&nbsp;&nbsp;<a class="here" href="#html.nodes.tip">tip</a>
2884
2753
  </h5>
2885
2754
  <div class="content"><p>Use a <strong>tip</strong> node when:</p>
2886
2755
 
@@ -2891,182 +2760,105 @@ DUCQhrhWJkj394A0gKeUCjVo3r9Zv0r2P3yyQqPd16MPAAAAAElFTkSuQmCC
2891
2760
 
2892
2761
 
2893
2762
  <p><div class="tip">
2894
- <p class="title"><a class="toc" id="An-example-607442918" href="#a-607146098">Tip 1</a>.&nbsp;&nbsp;An example</p>
2895
-
2896
- <img src="data:image/png;base64,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
- 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
- Lmlua3NjYXBlLm9yZ5vuPBoAAAyOSURBVGiB1ZlrkB3Fdcf/5/Q87r1z7z7u
2899
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- Ssf4xeCMqYWab9veI6rlCr773D/XfL/08NP7//G59xzgk488eguR+/KuO//C
2909
- C+IU8mWJD2xKYG2rM69Sg5g0DAwRYgMYoJ6yxhgYA4SRxqlzkzqUWuza3OG0
2910
- p23+5pNPVI0Jf/8bB554dTl6lrWM7tu3zyVyv7d+58c9djLIFUL83o4M1rY6
2911
- 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
- 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
- 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
- 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
- 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
- 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
- +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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
2932
- vWtas31uwpu1hAhsiwNLCGkJlgnbitZmvc4zp19ho6NvrzrAM08+NqXC4DMX
2933
- Xv1RsLWzWRCTZqZICERCIHprovymiuLayTMT3xzP106lHCvdmLG3dDQld63J
2934
- enc0pJPX+YE8z0IMGTt53LI4FBZJS0BagmVfT8vWgYFBNTw6+tyhQ189t1Rd
2935
- y9oTH3rqy4f2fvpv7990/cju69q7nemSr5k5YuJoPF+7srGzoSvtuTxZlueK
2936
- fvRz1xK+Y1MgiBUxdCKZabFd975CoXzOYbKMERwLspqSdk9z0tnwT//yrYqR
2937
- +OxyNC27KqHI3P+Tl/99LhEVM+taMykGacGkY4OgUAlGshm30WFSQpC0bAot
2938
- QYHlkG8Ly29IJZuVil+3iSqWTaHFpFoyybbetoY79z+1P/arlQeXu71cNsAz
2939
- Tz42pf3ybx974Xk/EVfbmtNugpk0Mel8RY3ZZFLMpGzByiaWjuDQsThIuuzH
2940
- MsjIOD4rLAotwdKxLNPZ6N375P798fDl0T89fOArLy1XzzXVhQ4e/NpYFNRu
2941
- /8mJY4muZq9FEDQT6WIlmC3MzrgUKVcQKWGRFMSha7EfVqtObvKKkKEcFcRS
2942
- CFYtDcntA0OD/uWRkS89ffCx716LlmsubB08+PiF3MTEf2q/mBVCMBEMk1D5
2943
- QqkwV8hliVhbhMh2WDmCw6HBX7UX8rMjlu34FkGxYe0w73jp+Esp24ivX6uO
2944
- FVXmlAyfGR8doUbPTVP9O81EhmeGBy+1MyM24FgwtBCWOnfm9U4IGnSEUUKw
2945
- ZmFiBrpzE7lzTz31pSW/ea9uK6rMCYhTA5cuJbfuuLljYLw0JaszbYh8PXz5
2946
- 4gbvZ9V7PC+yTRxWpqcKswMD422t7cmhwC+ku9dv9710U28gQxOE/rI28asK
2947
- cOjQl4f/8q8+NzQ5ermjwTaNuZk32i2KUglX0dTUOPr6NsC2ErgyNon16zNI
2948
- uDN/ODY2PjYydun0H+z51Ieeff5IYCJ97H0DAIBYqo9/5/nnzv753ofaUj3b
2949
- rOn8KLq6Q0xOXIFtJ2FbgON42LxlM7q62oUxTm8qtaX3/PkzpXPnz506dOjx
2950
- f13J+KtSG+3/k4/8sr1j1/aPfuyjuOH6LSiWp6CjKrSuQVCIVDKNZKoJqWQW
2951
- rtuC4y8dMz/84alAgK47ePCJyfcVYM+ezRu71mYH7rijD2fPr4FlZ7F79060
2952
- tWXR3NwML+XB9yuYmysgN5HDf5z4GfzaKMZHX/u3F1/85d0rGhyrEEKJhDVX
2953
- LgVBpILEA/e3Y67YjMGhi3j9F3PIz1RQrkg0NrpoyDCaGgxu2FxDaU5hfFQt
2954
- ufLwngIcPXohf889N/x4eKR6x+7fymL7tl246aYCAIMwlNCRRLVaRbEwi8Js
2955
- HoMDs3hrOAdj8PIq6F/5H5q77urrbG3N3L5jexatLduRSd8I11kDISy4jg1m
2956
- BhFBKo3Lw9MoVwKEUgIws6ugf+UeSKWMDEMZVavSzs++DsdNAjQHIgOpIszM
2957
- zCGfz6NcKqOnO4tUAjBxLyYnZ/54NQBW7IGjRy/kS6XwRxcvFmFiAZgYWkfQ
2958
- WsMYg+bmDLq62rGmoxlCCFRrIaam52AMzv+fAPjEJza1Z1vSt+3c2Y7W1puQ
2959
- 9vqQcP87hIQQICJEWmN8fBbGMNZ1t8N27Fv27NncvdLxVxxCUiY41pqCQOLq
2960
- ENKxwVyhjOnpPCqVKnrWtSE/ncfgTB5kjC4WQ0NENuq1VXMtP/6uCYCIeP5e
2961
- BlC+664tf3/06MXPT+Rsa+PGMazp7EIy5aFSriKfL2Bqchpzc3OolMoYHcvh
2962
- ypWcqtXk53/601EfgId65U4TkZ7vR8aYeElalgNNRGJe+OKjACB27Oja1Nqa
2963
- ujuZbLjb89Lbk0kL5fIc4ljDcTyEYQSl1PlKpfDi5cul7w8Pz+YAKMxXtq+y
2964
- aOFo6n9OVg5ARNa86MUAC30HgAsgsWvXrt/cunXrEw899FDSdV0UCgUMDQ3h
2965
- lVdeCS5evPh3Z86ceW1eeDhvwfxRLhIfLe4bY6J30rWkJJ4PmXcyaxGAe/r0
2966
- 6Yu+74+dOHFCTU5OIp/P480334zCMMydOXNmDEAGQApAYuGe+futdxqDiOgd
2967
- ta22BwC4nZ2dXdu2bfujlpaWe4wxNDMz84OzZ88em5qamkZ9ppfjAflu+bDc
2968
- HGAANv6XHFhk9iI4CwDNm5m3aJG9Ww4o1MPnXQVe09fovEsXBC+AXO16LBK/
2969
- 0BYggPpqs9jeBlvqCnTNAP/jIXWgBeNF/YXzBfHxIoC3z5cj+Or2X3r9Ye2F
2970
- 1izgAAAAAElFTkSuQmCC
2971
- " class="icon"/>
2972
-
2973
- <div class="content">This is what a <strong>tip</strong> node appears like.</div>
2763
+ <p class="title"><a class="list" id="An-example-606437288" href="#a-607504018">Tip 1</a>.&nbsp;&nbsp;<a class="here" href="#An-example-606437288">An example</a></p>
2764
+
2765
+ <div class="content icon-tip">This is how a <strong>tip</strong> node appears.</div>
2974
2766
  </div></p></div>
2975
2767
  </div></p></div>
2976
2768
  </div>
2977
2769
  <div class="section">
2978
2770
  <h4 class="title">
2979
- <a class="toc" id="Auxilary-materials" href="#a-607152728">5.1.4.4</a>&nbsp;&nbsp;Auxilary materials
2771
+ <a class="list" id="Auxilary-materials" href="#a-607512328">5.1.4.4</a>&nbsp;&nbsp;<a class="here" href="#Auxilary-materials">Auxilary materials</a>
2980
2772
  </h4>
2981
2773
  <div class="content"><div class="section">
2982
2774
  <h5 class="title">
2983
- <a class="toc" id="html.nodes.figure" href="#a-607155488">5.1.4.4.1</a>&nbsp;&nbsp;figure
2775
+ <a class="list" id="html.nodes.figure" href="#a-607518368">5.1.4.4.1</a>&nbsp;&nbsp;<a class="here" href="#html.nodes.figure">figure</a>
2984
2776
  </h5>
2985
2777
  <div class="content"><p>A diagram, sketch, image, or illustration; something that visually depicts an idea or thought.</p>
2986
2778
 
2987
2779
 
2988
2780
  <p><div class="figure">
2989
- <p class="title"><a class="toc" id="An-example-607477718" href="#a-607157598">Figure 1</a>.&nbsp;&nbsp;An example</p>
2990
- <div class="content">This is what a <strong>figure</strong> node appears like.</div>
2781
+ <p class="title"><a class="list" id="An-example-607112548" href="#a-607523218">Figure 1</a>.&nbsp;&nbsp;<a class="here" href="#An-example-607112548">An example</a></p>
2782
+ <div class="content">This is how a <strong>figure</strong> node appears.</div>
2991
2783
  </div></p></div>
2992
2784
  </div>
2993
2785
  <div class="section">
2994
2786
  <h5 class="title">
2995
- <a class="toc" id="html.nodes.table" href="#a-607165808">5.1.4.4.2</a>&nbsp;&nbsp;table
2787
+ <a class="list" id="html.nodes.table" href="#a-607534108">5.1.4.4.2</a>&nbsp;&nbsp;<a class="here" href="#html.nodes.table">table</a>
2996
2788
  </h5>
2997
2789
  <div class="content"><p>Information (typically measurement data) represented in tabular form for easy reading, comparison, and analysis.</p>
2998
2790
 
2999
2791
 
3000
2792
  <p><div class="table">
3001
- <p class="title"><a class="toc" id="An-example-607500258" href="#a-607169488">Table 1</a>.&nbsp;&nbsp;An example</p>
3002
- <div class="content">This is what a <strong>table</strong> node appears like.</div>
2793
+ <p class="title"><a class="list" id="An-example-607151838" href="#a-607543768">Table 1</a>.&nbsp;&nbsp;<a class="here" href="#An-example-607151838">An example</a></p>
2794
+ <div class="content">This is how a <strong>table</strong> node appears.</div>
3003
2795
  </div></p></div>
3004
2796
  </div>
3005
2797
  <div class="section">
3006
2798
  <h5 class="title">
3007
- <a class="toc" id="html.nodes.example" href="#a-607172808">5.1.4.4.3</a>&nbsp;&nbsp;example
2799
+ <a class="list" id="html.nodes.example" href="#a-607547408">5.1.4.4.3</a>&nbsp;&nbsp;<a class="here" href="#html.nodes.example">example</a>
3008
2800
  </h5>
3009
2801
  <div class="content"><p>A sample application of an idea or thought.</p>
3010
2802
 
3011
2803
 
3012
2804
  <p><div class="example">
3013
- <p class="title"><a class="toc" id="An-example-607522818" href="#a-607176778">Example 4</a>.&nbsp;&nbsp;An example</p>
3014
- <div class="content">This is what a <strong>example</strong> node appears like.</div>
2805
+ <p class="title"><a class="list" id="An-example-607230018" href="#a-607550448">Example 4</a>.&nbsp;&nbsp;<a class="here" href="#An-example-607230018">An example</a></p>
2806
+ <div class="content">This is how a <strong>example</strong> node appears.</div>
3015
2807
  </div></p></div>
3016
2808
  </div>
3017
2809
  <div class="section">
3018
2810
  <h5 class="title">
3019
- <a class="toc" id="html.nodes.equation" href="#a-607182908">5.1.4.4.4</a>&nbsp;&nbsp;equation
2811
+ <a class="list" id="html.nodes.equation" href="#a-607552748">5.1.4.4.4</a>&nbsp;&nbsp;<a class="here" href="#html.nodes.equation">equation</a>
3020
2812
  </h5>
3021
2813
  <div class="content"><p>A mathematical equation or formula.</p>
3022
2814
 
3023
2815
 
3024
2816
  <p><div class="equation">
3025
- <p class="title"><a class="toc" id="An-example-607544658" href="#a-607186458">Equation 1</a>.&nbsp;&nbsp;An example</p>
3026
- <div class="content">This is what a <strong>equation</strong> node appears like.</div>
2817
+ <p class="title"><a class="list" id="An-example-607310708" href="#a-607554518">Equation 1</a>.&nbsp;&nbsp;<a class="here" href="#An-example-607310708">An example</a></p>
2818
+ <div class="content">This is how a <strong>equation</strong> node appears.</div>
3027
2819
  </div></p></div>
3028
2820
  </div>
3029
2821
  <div class="section">
3030
2822
  <h5 class="title">
3031
- <a class="toc" id="html.nodes.procedure" href="#a-607192058">5.1.4.4.5</a>&nbsp;&nbsp;procedure
2823
+ <a class="list" id="html.nodes.procedure" href="#a-607556978">5.1.4.4.5</a>&nbsp;&nbsp;<a class="here" href="#html.nodes.procedure">procedure</a>
3032
2824
  </h5>
3033
2825
  <div class="content"><p>An outline; a series of steps outlining some kind of process.</p>
3034
2826
 
3035
2827
 
3036
2828
  <p><div class="procedure">
3037
- <p class="title"><a class="toc" id="An-example-607566718" href="#a-607198148">Procedure 1</a>.&nbsp;&nbsp;An example</p>
3038
- <div class="content">This is what a <strong>procedure</strong> node appears like.</div>
2829
+ <p class="title"><a class="list" id="An-example-607356818" href="#a-607558768">Procedure 1</a>.&nbsp;&nbsp;<a class="here" href="#An-example-607356818">An example</a></p>
2830
+ <div class="content">This is how a <strong>procedure</strong> node appears.</div>
3039
2831
  </div></p></div>
3040
2832
  </div></div>
3041
2833
  </div>
3042
2834
  <div class="section">
3043
2835
  <h4 class="title">
3044
- <a class="toc" id="Bibliography" href="#a-607206348">5.1.4.5</a>&nbsp;&nbsp;Bibliography
2836
+ <a class="list" id="Bibliography" href="#a-607561538">5.1.4.5</a>&nbsp;&nbsp;<a class="here" href="#Bibliography">Bibliography</a>
3045
2837
  </h4>
3046
2838
  <div class="content"><p>The nodes in this section deal with attribution of ideas&#8212;an important weapon against plagiarism.</p>
3047
2839
 
3048
2840
 
3049
2841
  <p><div class="section">
3050
2842
  <h5 class="title">
3051
- <a class="toc" id="html.nodes.reference" href="#a-607212128">5.1.4.5.1</a>&nbsp;&nbsp;reference
2843
+ <a class="list" id="html.nodes.reference" href="#a-607563538">5.1.4.5.1</a>&nbsp;&nbsp;<a class="here" href="#html.nodes.reference">reference</a>
3052
2844
  </h5>
3053
2845
  <div class="content"><p>This node stores bibliography information about an information source that is relevant to your document.</p>
3054
2846
 
3055
2847
 
3056
- <p>If you wish to cite a certain source in several places in your document, start by creating a <strong>reference</strong> node first and then use a <strong>cite</strong> node (see <a class="xref" href="#html.nodes.cite">Section 5.1.4.5.2: <em>cite</em></a>) to perform the citation.</p>
2848
+ <p>If you wish to cite a certain source in several places in your document, start by creating a <strong>reference</strong> node first and then use a <strong>cite</strong> node (see <a class="xref" href="#html.nodes.cite">Section 5.1.4.5.2. cite</a>) to perform the citation.</p>
3057
2849
 
3058
2850
 
3059
2851
  <p><div class="paragraph">
3060
- <p class="title">An example</p>
3061
- <div class="content">See <a class="xref" href="#html.nodes.reference.example">Reference 2</a> for an example of what a <strong>reference</strong> node appears like.</div>
2852
+ <p class="title" id="An-example-607569178"><a class="here" href="#An-example-607569178">An example</a></p>
2853
+ <div class="content">See <a class="xref" href="#html.nodes.reference.example">Reference 2</a> for an example of how a <strong>reference</strong> node appears.</div>
3062
2854
  </div>
3063
2855
  </p></div>
3064
2856
  </div>
3065
2857
  <div class="section">
3066
2858
  <h5 class="title">
3067
- <a class="toc" id="html.nodes.cite" href="#a-607239408">5.1.4.5.2</a>&nbsp;&nbsp;cite
2859
+ <a class="list" id="html.nodes.cite" href="#a-607572658">5.1.4.5.2</a>&nbsp;&nbsp;<a class="here" href="#html.nodes.cite">cite</a>
3068
2860
  </h5>
3069
- <div class="content"><p>A citation to a <strong>reference</strong> node (see <a class="xref" href="#html.nodes.reference">Section 5.1.4.5.1: <em>reference</em></a>) in the document&#8217;s bibliography.</p>
2861
+ <div class="content"><p>A citation to a <strong>reference</strong> node (see <a class="xref" href="#html.nodes.reference">Section 5.1.4.5.1. reference</a>) in the document&#8217;s bibliography.</p>
3070
2862
 
3071
2863
 
3072
2864
  <p>The first argument of this node is the unique identifier of the reference node you wish to cite. You can specify additional arguments to give more detail about the citation.</p>
@@ -3095,11 +2887,11 @@ HGAANv6XHFhk9iI4CwDNm5m3aJG9Ww4o1MPnXQVe09fovEsXBC+AXO16LBK/
3095
2887
  <div class="chapter">
3096
2888
  <h1 class="title">
3097
2889
  Chapter
3098
- <a class="toc" id="text" href="#a-607247898">5.2</a>
2890
+ <a class="list" id="text" href="#a-607581168">5.2</a>
3099
2891
 
3100
2892
  <br/>
3101
2893
 
3102
- <big>Plain text</big>
2894
+ <a class="here" href="#text"><big>Plain text</big></a>
3103
2895
  </h1>
3104
2896
 
3105
2897
  <div class="content"><p>This format is not yet implemented.</p>
@@ -3110,11 +2902,11 @@ HGAANv6XHFhk9iI4CwDNm5m3aJG9Ww4o1MPnXQVe09fovEsXBC+AXO16LBK/
3110
2902
  <div class="chapter">
3111
2903
  <h1 class="title">
3112
2904
  Chapter
3113
- <a class="toc" id="latex" href="#a-607250098">5.3</a>
2905
+ <a class="list" id="latex" href="#a-607583378">5.3</a>
3114
2906
 
3115
2907
  <br/>
3116
2908
 
3117
- <big>LaTeX</big>
2909
+ <a class="here" href="#latex"><big>LaTeX</big></a>
3118
2910
  </h1>
3119
2911
 
3120
2912
  <div class="content"><p>This format is not yet implemented.</p>
@@ -3125,11 +2917,11 @@ HGAANv6XHFhk9iI4CwDNm5m3aJG9Ww4o1MPnXQVe09fovEsXBC+AXO16LBK/
3125
2917
  <div class="chapter">
3126
2918
  <h1 class="title">
3127
2919
  Chapter
3128
- <a class="toc" id="man" href="#a-607252408">5.4</a>
2920
+ <a class="list" id="man" href="#a-607585638">5.4</a>
3129
2921
 
3130
2922
  <br/>
3131
2923
 
3132
- <big>UNIX man page</big>
2924
+ <a class="here" href="#man"><big>UNIX man page</big></a>
3133
2925
  </h1>
3134
2926
 
3135
2927
  <div class="content"><p>This format is not yet implemented.</p>
@@ -3139,11 +2931,11 @@ HGAANv6XHFhk9iI4CwDNm5m3aJG9Ww4o1MPnXQVe09fovEsXBC+AXO16LBK/
3139
2931
  </div></p></div>
3140
2932
  </div></div>
3141
2933
 
3142
- <div id="references">
3143
- <h1 class="title">References</h1>
2934
+ <div id="References">
2935
+ <h1 class="title"><a class="here" href="#References">References</a></h1>
3144
2936
  <ol>
3145
2937
  <li id="KDE.admonitions">L. Watts, &#8220;Admonitions: Tips, hints, and Warnings&#8221;, in <em>The KDE DocBook Authors guide</em>, Chapter 13, [Online document], 22 September 2004 (Revision 1.00.00), [cited 8 December 2007], Available at <a href="http://l10n.kde.org/docs/markup/tips-hints-etc.html">http://l10n.kde.org/docs/markup/tips-hints-etc.html</a></li>
3146
- <li id="html.nodes.reference.example">This is what a <strong>reference</strong> node appears like.</li>
2938
+ <li id="html.nodes.reference.example">This is how a <strong>reference</strong> node appears.</li>
3147
2939
  </ol>
3148
2940
  </div>
3149
2941
 
@@ -3154,305 +2946,17 @@ HGAANv6XHFhk9iI4CwDNm5m3aJG9Ww4o1MPnXQVe09fovEsXBC+AXO16LBK/
3154
2946
 
3155
2947
  <div id="footer">
3156
2948
 
3157
- Generated on Sun Jun 08 12:56:41 -0700 2008 by <a href="http://gerbil.rubyforge.org">Gerbil</a> 3.0.2.
3158
-
3159
- <p>The admonition icons (<img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAABHNCSVQICAgI
3160
- fAhkiAAAAAlwSFlzAAAN1wAADdcBQiibeAAAABl0RVh0U29mdHdhcmUAd3d3
3161
- Lmlua3NjYXBlLm9yZ5vuPBoAAAmCSURBVGiB1ZltbJXlGcd/9/N+Tlssh1Ja
3162
- hNEJaK2UFxFptqC2wGCSTWdM3DSQzWVDEzVxy4xfjNkHQ8xMnEEXviwZ62Rj
3163
- 6siWTcVBZeJA5yBQpOWlKNZSaEvpyyk95zwv970Pp+fY5/S0tFBkXsmTc67n
3164
- eu77+f/u6349Ryil+Cqbdq0FXKldEuClp+3nfvVz/eJLT9vPXQv/igFc13tq
3165
- w4/ujLqu99S18C9lRr6br7zyyi2WZb2eSqUqpVSUlE5BSmW8/PLL6sv2bdtu
3166
- TiaT9z/++ONN486AZVm/XLiw+qZlt98Wun/bsqUhf+nSJSF/ya2LQv6ixQtD
3167
- /sJFC0L+guqqkF91S2XIr6y6idlfm1Vp2/Yz+XSOCiCEqDJMQ3ze+hm6bnC+
3168
- sx9d1zl+vBlN1znf2Y+m6TQfa0LTvvCbmo6G/KNHj4T8Ix83hvzGI4dD/uHG
3169
- QyG/peUElmUJIURlPp2jAkgpiwXg+R5FM9dRv3U/heXrkFJSWHZ32i/7NlJK
3170
- CsrWUr91P9EZa5FSEildQ/3W/USmfwspJc701dRv3Y9dshopJda0VdRv3Y8V
3171
- W4mUEjO2kvqt+zCm1iGlxCiu5fe/24defBeu6yHSkopHAxD51oEtW7bEb1++
3172
- rLC5+ShBEKCU+uJCgWJCvlJD9/iinlw/o2O4b5omixct4fixkz2PPPJILB9A
3173
- 3kEspYzOmjWbxYuWjIiNtfBdjdjg4EWam44XjhYf0YU2b948xTTNoGRaSbjl
3174
- R2mlqx0rLCxC0zR98+bNdj6AERkIgiDmOI6nlDK/7NbOF1NKYdt2KplMxoCz
3175
- ufERAKZpxiKRSDC8wnfeeWfUl06W0FxbtWpV9tloNOoPDg6OD0BKGYtEIqGX
3176
- rV69etKFXio2vGs5jqOklOMbxJqmxaLRqBheSRAEo77sSoWOZkKI7DORSERo
3177
- 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
- G5fIyR68mU/Hccyes8cq19cVbQB84Fh9Q/xgXgDTNGfYtq0NBxivkMmGAGg7
3179
- 3cTOV58xe9tPPvnwuodUxFX89cOd/vq6orX1DfG9IwB0XS+zbTs0kHbt2jVh
3180
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- BcyeNRsA6Q+S6G4h1XcaJdMLZ0evT3tXG/65VznU9j5eofqN5/N8/c7+9kyd
3188
- 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
- xklcOEmq73NQEqmgvduj5axLR5/GRVdQd89G2uMFsqd3wH722Wf94XWHMhCJ
3190
- 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
- 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
- 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
- q5Ablt7Lgz/+BZqmZ+uzbdsfGBiIjQkwtI1QuTNQbW3tJVt7uB14bwcfHdnB
3194
- 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
- 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
- JySnzrp81unRGRdU3LiUHz76JBU3LhkhOmNSShzHId+WOgSQTCZjlmWFdqIA
3197
- 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
- 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
- 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
- wzDQdR3DMDAMA9M0s/UOFy+lxLZtw/f9sQE8z5tu27aR24UyhwshROiQ47ou
3201
- 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
- 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
- 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
- ksw7hBAIIdA0LfuZ2cbkvs80TaGUKh8TwPf9UsuykFKGIGpqanLLZVPbffNc
3205
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- bj2VSjFnzpxrKjafSSm5cOEC/f39KUAnrVsTgAkUAYU1NTUPx2KxjUEQTLmW
3213
- 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
- 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
- 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
3216
- "/> <img src="data:image/png;base64,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
- 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
- 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
- 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
- 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
- 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
- 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
- 5pmfmAiufXXBm7+VDkTk3cCYN0dVT/xPBYyJ7LdFXutav37Xzr0PJgfuuVvc
3224
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- UsAxkR1Rx/n08aef6uqyXMh5bUl3dJ8O5Bc5N4tfyFnXhVfMcvr4iWzZD/a0
3233
- mp1aulBU5PV7H9mb6HIctGr5dq5Ra7CTazS5UUM9phFfLdfpeeJujLv3PZCI
3234
- irzeimuTgDGR/W5vz4GNO7ZZZi7X1Fg7X25HOky4kXQdtlpOqB0DmBmP1PYt
3235
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- KlPXreu+Ow1qlMAEy8fXhCBYdmVCaCrPZuumVwjPQiK3S4UCanRxKgvFlQQT
3246
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- M07h8g2g+YPTlLdCDFVR8R0jRLYPc+PUl7l8evatp5c4Xl/2BYediL267cc/
3261
- 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
- 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
- 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
- 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
- bfzZHEGxhMkXCYqVa1aJuljRCFbMxe5NEh3pQ10HbzyjmW8nCrOZ+Rt/h9/+
3266
- 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
- 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
- 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
- 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
- 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
- rBDpMPlaalVjI/la9EMCgnZW7hT+A5SLlrQmK/qkAAAAAElFTkSuQmCC
3272
- "/> <img src="data:image/png;base64,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
- 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
- Lmlua3NjYXBlLm9yZ5vuPBoAAAiESURBVGiB7ZpdbBzVFcd/Z2Znd2d3vbtm
3275
- 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
- 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
- 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
- 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
- 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
- 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
- jzszc9lu+FkqfaZUgAFvlDU1OQI9PajQt/NVhcOM9/RQWl/vssDOF0RSNvdS
3282
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 2wZAdGKC0OefU1xZabfC64tkuT7bLVKk2+0bc1etMhIJm5aVha2t7YrLJi0t
3295
- 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
- 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
- 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
- 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
- UFRe7tDh1etJtxcs4C2RRtstt/wwo7hYxo8dA0AvKcF2331XwcOVl830OTC9
3300
- tjY0YGtqAiDU34/L4cDt86XfBptTLkDgjdL6esfE8eOoyUkAzG3bEF2/Cn62
3301
- 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
- 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
- +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
- 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
- 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
- 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
- bTcMgmfPAmC9664Fwb/88ss0NDTQ2NjIzp0754UXESx5ebja2mJixsaQ0VFy
3308
- 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
- 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
- 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
- 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
- 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
- qsqQixdj8ID9gQcWDA+QkZFBZ2cnnZ2dC4YH0D0evFtjS4AKhYgODZHv99u0
3314
- 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
- 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
- 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
- +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
- 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
- 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
- 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
- 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
- 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
3323
- 4xicOQAAAABJRU5ErkJggg==
3324
- "/> <img src="data:image/png;base64,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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- H3UvpuiiBHjdzGaT2Ds7dj36VEtbq8yH+nOGSaFgigKqKsf5sz3quY8H977o
3336
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- +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
- 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
- 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
- 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
- AwXM4Uj2utj6BIxL7yVnsAIg1rkwLpTrfzlyed+L79PbmelZNw6qgX2HP7ga
3362
- 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
- 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
- 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
- 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
- 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
- 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
- h279S8dvYjxFfvbSZoUsLGC211PkZfPz7na0fLYN+9say7bs2LSyqEjkMCbG
3369
- wAN+II+zJCbLEMqrwGpWwD+j8b//qz92cSDy6i9P43chFaqZdMZdM3tjngBT
3370
- z6cRz3z+/Gp8alsrXmpfWbGma3WNXLuiQmDxKHhwGpSIA4kESEuAdA1MUsAU
3371
- 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
- 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
- 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
- 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
- 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
- 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
- KbKpZ8GCfObhDrfohGxeMUzk40RkeVy4qB/dqcUMyVDJDJNM4mbymQIyvWgW
3378
- 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
3379
- 2wAAAABJRU5ErkJggg==
3380
- "/> <img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAABHNCSVQICAgI
3381
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- +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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- o1SsHYutiIwmig3AgDYcW0a0N3n2bLEUgnh8ybKWDBAF3yrnBmtNKUcL4kgI
3413
- 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
- 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
- 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
3416
- vWtas31uwpu1hAhsiwNLCGkJlgnbitZmvc4zp19ho6NvrzrAM08+NqXC4DMX
3417
- Xv1RsLWzWRCTZqZICERCIHprovymiuLayTMT3xzP106lHCvdmLG3dDQld63J
3418
- enc0pJPX+YE8z0IMGTt53LI4FBZJS0BagmVfT8vWgYFBNTw6+tyhQ189t1Rd
3419
- y9oTH3rqy4f2fvpv7990/cju69q7nemSr5k5YuJoPF+7srGzoSvtuTxZlueK
3420
- fvRz1xK+Y1MgiBUxdCKZabFd975CoXzOYbKMERwLspqSdk9z0tnwT//yrYqR
3421
- +OxyNC27KqHI3P+Tl/99LhEVM+taMykGacGkY4OgUAlGshm30WFSQpC0bAot
3422
- QYHlkG8Ly29IJZuVil+3iSqWTaHFpFoyybbetoY79z+1P/arlQeXu71cNsAz
3423
- Tz42pf3ybx974Xk/EVfbmtNugpk0Mel8RY3ZZFLMpGzByiaWjuDQsThIuuzH
3424
- MsjIOD4rLAotwdKxLNPZ6N375P798fDl0T89fOArLy1XzzXVhQ4e/NpYFNRu
3425
- /8mJY4muZq9FEDQT6WIlmC3MzrgUKVcQKWGRFMSha7EfVqtObvKKkKEcFcRS
3426
- CFYtDcntA0OD/uWRkS89ffCx716LlmsubB08+PiF3MTEf2q/mBVCMBEMk1D5
3427
- QqkwV8hliVhbhMh2WDmCw6HBX7UX8rMjlu34FkGxYe0w73jp+Esp24ivX6uO
3428
- FVXmlAyfGR8doUbPTVP9O81EhmeGBy+1MyM24FgwtBCWOnfm9U4IGnSEUUKw
3429
- ZmFiBrpzE7lzTz31pSW/ea9uK6rMCYhTA5cuJbfuuLljYLw0JaszbYh8PXz5
3430
- 4gbvZ9V7PC+yTRxWpqcKswMD422t7cmhwC+ku9dv9710U28gQxOE/rI28asK
3431
- cOjQl4f/8q8+NzQ5ermjwTaNuZk32i2KUglX0dTUOPr6NsC2ErgyNon16zNI
3432
- uDN/ODY2PjYydun0H+z51Ieeff5IYCJ97H0DAIBYqo9/5/nnzv753ofaUj3b
3433
- rOn8KLq6Q0xOXIFtJ2FbgON42LxlM7q62oUxTm8qtaX3/PkzpXPnz506dOjx
3434
- f13J+KtSG+3/k4/8sr1j1/aPfuyjuOH6LSiWp6CjKrSuQVCIVDKNZKoJqWQW
3435
- rtuC4y8dMz/84alAgK47ePCJyfcVYM+ezRu71mYH7rijD2fPr4FlZ7F79060
3436
- tWXR3NwML+XB9yuYmysgN5HDf5z4GfzaKMZHX/u3F1/85d0rGhyrEEKJhDVX
3437
- LgVBpILEA/e3Y67YjMGhi3j9F3PIz1RQrkg0NrpoyDCaGgxu2FxDaU5hfFQt
3438
- ufLwngIcPXohf889N/x4eKR6x+7fymL7tl246aYCAIMwlNCRRLVaRbEwi8Js
3439
- HoMDs3hrOAdj8PIq6F/5H5q77urrbG3N3L5jexatLduRSd8I11kDISy4jg1m
3440
- BhFBKo3Lw9MoVwKEUgIws6ugf+UeSKWMDEMZVavSzs++DsdNAjQHIgOpIszM
3441
- zCGfz6NcKqOnO4tUAjBxLyYnZ/54NQBW7IGjRy/kS6XwRxcvFmFiAZgYWkfQ
3442
- WsMYg+bmDLq62rGmoxlCCFRrIaam52AMzv+fAPjEJza1Z1vSt+3c2Y7W1puQ
3443
- 9vqQcP87hIQQICJEWmN8fBbGMNZ1t8N27Fv27NncvdLxVxxCUiY41pqCQOLq
3444
- ENKxwVyhjOnpPCqVKnrWtSE/ncfgTB5kjC4WQ0NENuq1VXMtP/6uCYCIeP5e
3445
- BlC+664tf3/06MXPT+Rsa+PGMazp7EIy5aFSriKfL2Bqchpzc3OolMoYHcvh
3446
- ypWcqtXk53/601EfgId65U4TkZ7vR8aYeElalgNNRGJe+OKjACB27Oja1Nqa
3447
- ujuZbLjb89Lbk0kL5fIc4ljDcTyEYQSl1PlKpfDi5cul7w8Pz+YAKMxXtq+y
3448
- aOFo6n9OVg5ARNa86MUAC30HgAsgsWvXrt/cunXrEw899FDSdV0UCgUMDQ3h
3449
- lVdeCS5evPh3Z86ceW1eeDhvwfxRLhIfLe4bY6J30rWkJJ4PmXcyaxGAe/r0
3450
- 6Yu+74+dOHFCTU5OIp/P480334zCMMydOXNmDEAGQApAYuGe+futdxqDiOgd
3451
- ta22BwC4nZ2dXdu2bfujlpaWe4wxNDMz84OzZ88em5qamkZ9ppfjAflu+bDc
3452
- HGAANv6XHFhk9iI4CwDNm5m3aJG9Ww4o1MPnXQVe09fovEsXBC+AXO16LBK/
3453
- 0BYggPpqs9jeBlvqCnTNAP/jIXWgBeNF/YXzBfHxIoC3z5cj+Or2X3r9Ye2F
3454
- 1izgAAAAAElFTkSuQmCC
3455
- "/>) used in this document are Copyright &copy; 2005 <a href="http://tango.freedesktop.org">Tango Desktop Project</a>. They are part of the <a href="http://tango.freedesktop.org/Tango_Icon_Library">Tango Icon Theme</a> set, which is distributed under the <a href="http://creativecommons.org/licenses/by-sa/2.5/">Creative Commons Attribution-ShareAlike 2.5 License Agreement</a>.</p>
2949
+ Generated on Sun Jun 22 17:21:53 -0700 2008 by <a href="http://gerbil.rubyforge.org">Gerbil</a> 3.1.0.
2950
+
2951
+ <div id="footer-credits">
2952
+ <span class="icon-note" style="float: right">&nbsp;</span>
2953
+ <span class="icon-warning" style="float: right">&nbsp;</span>
2954
+ <span class="icon-caution" style="float: right">&nbsp;</span>
2955
+ <span class="icon-important" style="float: right">&nbsp;</span>
2956
+ <span class="icon-tip" style="float: right">&nbsp;</span>
2957
+
2958
+ <p>The admonition graphics used in this document are Copyright &copy; 2005 <a href="http://tango.freedesktop.org">Tango Desktop Project</a>. They are part of the <a href="http://tango.freedesktop.org/Tango_Icon_Library">Tango Icon Theme</a> set, which is distributed under the <a href="http://creativecommons.org/licenses/by-sa/2.5/">Creative Commons Attribution-ShareAlike 2.5 License Agreement</a>.</p>
2959
+ </div>
3456
2960
 
3457
2961
  </div>
3458
2962