docgenerator 2.0.0 → 2.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (104) hide show
  1. data/examples/creole_example_tabular.rb +95 -0
  2. data/examples/docgenerator_example.rb +5 -5
  3. data/lib/creole/creole2doc.rb +28 -18
  4. data/lib/creole/creole_inclusions.rb +4 -4
  5. data/lib/creole/creole_placeholder.rb +4 -1
  6. data/lib/creole/creole_tabular.rb +173 -155
  7. data/lib/creole/plugins/rail.rb +118 -119
  8. data/lib/creole/plugins/struktex.rb +35 -35
  9. data/lib/creole/plugins/todonotes.rb +8 -1
  10. data/lib/docgenerator/attribute.rb +160 -160
  11. data/lib/docgenerator/characters.rb +343 -311
  12. data/lib/docgenerator/css.rb +167 -167
  13. data/lib/docgenerator/document.rb +525 -511
  14. data/lib/docgenerator/element.rb +316 -316
  15. data/lib/docgenerator/element_meta.rb +114 -114
  16. data/lib/docgenerator/elements.rb +19 -9
  17. data/lib/docgenerator/environments.rb +3 -1
  18. data/lib/docgenerator/lists.rb +177 -174
  19. data/lib/docgenerator/packages/hyperref.rb +74 -70
  20. data/lib/docgenerator/packages/multicol.rb +33 -0
  21. data/lib/docgenerator/packages/scrlettr2.rb +152 -151
  22. data/lib/docgenerator/packages/todonotes.rb +1 -1
  23. data/lib/docgenerator/tabular.rb +463 -400
  24. data/lib/docgenerator/templates/docgenerator_template.rb +94 -84
  25. data/lib/docgenerator/templates/docgenerator_template.yaml +75 -15
  26. data/lib/docgenerator.rb +1 -1
  27. data/lib/wiki2doc/wiki2docgenerator.rb +1 -1
  28. data/meta_test_and_doc/build__meta.rb +125 -0
  29. data/meta_test_and_doc/build_doc.rb +333 -0
  30. data/meta_test_and_doc/build_test.rb +251 -0
  31. data/meta_test_and_doc/manpages/attachfile.rb +389 -0
  32. data/meta_test_and_doc/manpages/caption.rb +133 -0
  33. data/meta_test_and_doc/manpages/characters.rb +3738 -0
  34. data/meta_test_and_doc/manpages/elements.rb +6851 -0
  35. data/meta_test_and_doc/manpages/environments.rb +985 -0
  36. data/meta_test_and_doc/manpages/footnote.rb +439 -0
  37. data/meta_test_and_doc/manpages/hyperref.rb +605 -0
  38. data/meta_test_and_doc/manpages/listings.rb +988 -0
  39. data/meta_test_and_doc/manpages/lists.rb +1463 -0
  40. data/meta_test_and_doc/manpages/others.rb +129 -0
  41. data/meta_test_and_doc/manpages/packages.rb +13 -0
  42. data/meta_test_and_doc/manpages/pdfpages.rb +108 -0
  43. data/meta_test_and_doc/manpages/readme.rdoc +9 -0
  44. data/meta_test_and_doc/manpages/scrlettr2.rb +362 -0
  45. data/meta_test_and_doc/manpages/scrpage2.rb +2028 -0
  46. data/meta_test_and_doc/manpages/sectioning.rb +2467 -0
  47. data/meta_test_and_doc/manpages/tables.rb +2088 -0
  48. data/meta_test_and_doc/manpages/todonotes.rb +235 -0
  49. data/meta_test_and_doc/manpages/wiki2docgenerator.rb +64 -0
  50. data/{readme.rd → readme.rdoc} +18 -1
  51. data/unittest/expected/test_tabular.creole +33 -0
  52. data/unittest/expected_creole/test_creole_creole1.0test.html +3 -3
  53. data/unittest/expected_creole/test_creole_creole1.0test.latex +3 -3
  54. data/unittest/expected_creole/test_creole_creole1.0test.text +3 -3
  55. data/unittest/expected_creole/test_creole_inline_apostroph.html +6 -0
  56. data/unittest/expected_creole/test_creole_inline_apostroph.latex +8 -0
  57. data/unittest/expected_creole/test_creole_inline_apostroph.text +4 -0
  58. data/unittest/expected_creole/test_creole_input.normsource +12 -12
  59. data/unittest/expected_creole/test_creole_input.normsource_1.8 +23 -0
  60. data/unittest/expected_creole/test_creole_links_external_implicit.html +2 -2
  61. data/unittest/expected_creole/test_creole_links_external_implicit.latex +2 -2
  62. data/unittest/expected_creole/test_creole_links_external_implicit.text +2 -2
  63. data/unittest/expected_creole/test_creole_links_implicit_end.html +1 -1
  64. data/unittest/expected_creole/test_creole_links_implicit_end.latex +1 -1
  65. data/unittest/expected_creole/test_creole_list_ul.normsource +42 -42
  66. data/unittest/expected_creole/test_creole_list_ul.normsource_1.8 +83 -0
  67. data/unittest/expected_creole/test_creole_paragraphs.normsource +15 -15
  68. data/unittest/expected_creole/test_creole_paragraphs.normsource_1.8 +27 -0
  69. data/unittest/expected_creole/test_creole_tabular.creole +22 -0
  70. data/unittest/expected_creole/test_creole_tabular_creole.creole +19 -0
  71. data/unittest/expected_creole/test_creole_tabular_css.creole +24 -0
  72. data/unittest/expected_creole/test_creole_tabular_multicols.creole +16 -0
  73. data/unittest/expected_creole/test_creole_tabular_multicols.html +14 -0
  74. data/unittest/expected_creole/test_creole_tabular_multicols.latex +16 -0
  75. data/unittest/expected_creole/test_creole_tabular_with_cell_option.creole +21 -0
  76. data/unittest/expected_creole/test_creole_toc_level_text.html +2 -2
  77. data/unittest/expected_creole/test_creole_toc_level_text.latex +2 -2
  78. data/unittest/expected_packages/test_multicol_3.tex +2 -0
  79. data/unittest/expected_packages/test_multicol_3_titleline.tex +2 -0
  80. data/unittest/expected_templates/test_article.tex +23 -0
  81. data/unittest/expected_templates/test_article_utf8.tex +34 -0
  82. data/unittest/expected_templates/test_context.miv +18 -0
  83. data/unittest/expected_templates/test_creole.creole +8 -0
  84. data/unittest/expected_templates/test_html.html +12 -0
  85. data/unittest/expected_templates/test_html401_strict.html +14 -0
  86. data/unittest/expected_templates/test_html401_trans.html +14 -0
  87. data/unittest/expected_templates/test_html_utf8.html +14 -0
  88. data/unittest/expected_templates/test_include.tex +17 -0
  89. data/unittest/expected_templates/test_include_utf8.tex +17 -0
  90. data/unittest/expected_templates/test_text.txt +6 -0
  91. data/unittest/expected_templates/test_wiki.wiki +6 -0
  92. data/unittest/expected_templates/test_xhtml_strict.html +14 -0
  93. data/unittest/expected_templates/test_xhtml_trans.html +14 -0
  94. data/unittest/unittest_creole.rb +27 -6
  95. data/unittest/unittest_creole_placeholders.rb +1 -123
  96. data/unittest/unittest_creole_tabular.rb +174 -0
  97. data/unittest/unittest_docgenerator.rb +4 -3
  98. data/unittest/unittest_docgenerator_characters.rb +4769 -615
  99. data/unittest/unittest_packages_multicol.rb +84 -0
  100. data/unittest/unittest_rubycode4doc.rb +0 -1
  101. data/unittest/unittest_templates.rb +64 -0
  102. metadata +163 -77
  103. data/build_test_and_doc.rb +0 -505
  104. data/manpage_elements.rb +0 -10411
@@ -0,0 +1,2467 @@
1
+ #encoding utf-8
2
+ =begin rdoc
3
+ Generated manpages for elements.
4
+
5
+ This document does not contain the implementation or code documentation.
6
+
7
+ This document is the source for a manpage for usage of Docgenerator elements.
8
+
9
+ The following Element are documented in this document:
10
+
11
+ * Docgenerator::Sectioning::Part
12
+ * Docgenerator::Sectioning::Chapter
13
+ * Docgenerator::Sectioning::Section
14
+ * Docgenerator::Sectioning::Subsection
15
+ * Docgenerator::Sectioning::Subsubsection
16
+ * Docgenerator::Sectioning::Paragraph
17
+ * Docgenerator::Sectioning::Subparagraph
18
+ * Docgenerator::Sectioning::Minisec
19
+ * Docgenerator::Sectioning::Addsec
20
+ =end
21
+
22
+ #
23
+ module Docgenerator
24
+ module Sectioning
25
+ =begin rdoc
26
+ =Docgenerator::Sectioning::Part
27
+
28
+ ==Attributes
29
+ Attribute required? HTML LaTeX ~keyval ConTeXt Text Wiki Creole Values
30
+ ====================================================================================================
31
+ lang : - X - - - - - -
32
+ id : - X - - - - - -
33
+ class : - X - - - - - -
34
+ style : - X - - - - - -
35
+ title : - X - - - - - -
36
+ dir : - X - - - - - -
37
+ onclick : - X - - - - - -
38
+ ondblclick : - X - - - - - -
39
+ onmousedown : - X - - - - - -
40
+ onmouseup : - X - - - - - -
41
+ onmouseover : - X - - - - - -
42
+ onmousemove : - X - - - - - -
43
+ onmouseout : - X - - - - - -
44
+ onkeypress : - X - - - - - -
45
+ onkeyup : - X - - - - - -
46
+ onkeydown : - X - - - - - -
47
+ short : - - X - - - - -
48
+
49
+
50
+ Docgenerator::Sectioning::Part can contain content.
51
+
52
+ ==Generate an object
53
+ test = Docgenerator::Sectioning::Part.new( {
54
+ #:lang => <<value>>, % optional, values: ["en", "de"]
55
+ #:id => <<value>>, % optional
56
+ #:class => <<value>>, % optional
57
+ #:style => <<value>>, % optional, values: [Docgenerator::CSS, String]
58
+ #:title => <<value>>, % optional
59
+ #:dir => <<value>>, % optional, values: ["ltr", "rtl"]
60
+ #:onclick => <<value>>, % optional
61
+ #:ondblclick => <<value>>, % optional
62
+ #:onmousedown => <<value>>, % optional
63
+ #:onmouseup => <<value>>, % optional
64
+ #:onmouseover => <<value>>, % optional
65
+ #:onmousemove => <<value>>, % optional
66
+ #:onmouseout => <<value>>, % optional
67
+ #:onkeypress => <<value>>, % optional
68
+ #:onkeyup => <<value>>, % optional
69
+ #:onkeydown => <<value>>, % optional
70
+ #:short => <<value>>, % optional
71
+ }, 'content')
72
+
73
+ Alternative generation
74
+ test = element(:part, {...Attributes...}, 'content' )
75
+
76
+
77
+ ==Outputs
78
+ ===Docgenerator::Sectioning::Part#to_latex
79
+ \part{content}
80
+
81
+ ====:cr, :cR, :Cr, :CR for Docgenerator::Sectioning::Part#.to_latex
82
+ <<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
83
+
84
+ Default:
85
+ <<START>>\part{content}<<END>>
86
+
87
+ * Result after Docgenerator::Sectioning::Part#cr:
88
+
89
+ <<START>>\part{content}
90
+ <<END>>
91
+
92
+ * Result after Docgenerator::Sectioning::Part#cR:
93
+
94
+ <<START>>\part{content}
95
+ <<END>>
96
+
97
+ * Result after Docgenerator::Sectioning::Part#Cr:
98
+
99
+ <<START>>
100
+ \part{content}
101
+ <<END>>
102
+
103
+ * Result after Docgenerator::Sectioning::Part#CR:
104
+
105
+ <<START>>
106
+ \part{content}
107
+ <<END>>
108
+
109
+ ===Docgenerator::Sectioning::Part#to_html
110
+ <span >content</span>
111
+
112
+ * No output routine defined for html - use a dummy
113
+ ===Docgenerator::Sectioning::Part#to_context
114
+ \part{content}
115
+
116
+ ====:cr, :cR, :Cr, :CR for Docgenerator::Sectioning::Part#.to_context
117
+ <<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
118
+
119
+ Default:
120
+ <<START>>\part{content}<<END>>
121
+
122
+ * Result after Docgenerator::Sectioning::Part#cr:
123
+
124
+ <<START>>\part{content}
125
+ <<END>>
126
+
127
+ * Result after Docgenerator::Sectioning::Part#cR:
128
+
129
+ <<START>>\part{content}
130
+ <<END>>
131
+
132
+ * Result after Docgenerator::Sectioning::Part#Cr:
133
+
134
+ <<START>>
135
+ \part{content}
136
+ <<END>>
137
+
138
+ * Result after Docgenerator::Sectioning::Part#CR:
139
+
140
+ <<START>>
141
+ \part{content}
142
+ <<END>>
143
+
144
+ ===Docgenerator::Sectioning::Part#to_text
145
+
146
+ content
147
+ ------------------------------
148
+
149
+
150
+ ====:cr, :cR, :Cr, :CR for Docgenerator::Sectioning::Part#.to_text
151
+ <<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
152
+
153
+ Default:
154
+ <<START>>
155
+ content
156
+ ------------------------------
157
+ <<END>>
158
+
159
+ * Result after Docgenerator::Sectioning::Part#cr:
160
+
161
+ <<START>>
162
+ content
163
+ ------------------------------
164
+
165
+ <<END>>
166
+
167
+ * Result after Docgenerator::Sectioning::Part#cR:
168
+
169
+ <<START>>
170
+ content
171
+ ------------------------------
172
+
173
+ <<END>>
174
+
175
+ * Result after Docgenerator::Sectioning::Part#Cr:
176
+
177
+ <<START>>
178
+
179
+ content
180
+ ------------------------------
181
+
182
+ <<END>>
183
+
184
+ * Result after Docgenerator::Sectioning::Part#CR:
185
+
186
+ <<START>>
187
+
188
+ content
189
+ ------------------------------
190
+
191
+ <<END>>
192
+
193
+ ===Docgenerator::Sectioning::Part#to_wiki
194
+
195
+ content
196
+
197
+
198
+ ====:cr, :cR, :Cr, :CR for Docgenerator::Sectioning::Part#.to_wiki
199
+ <<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
200
+
201
+ Default:
202
+ <<START>>
203
+ content
204
+ <<END>>
205
+
206
+ * Result after Docgenerator::Sectioning::Part#cr:
207
+
208
+ <<START>>
209
+ content
210
+
211
+ <<END>>
212
+
213
+ * Result after Docgenerator::Sectioning::Part#cR:
214
+
215
+ <<START>>
216
+ content
217
+
218
+ <<END>>
219
+
220
+ * Result after Docgenerator::Sectioning::Part#Cr:
221
+
222
+ <<START>>
223
+
224
+ content
225
+
226
+ <<END>>
227
+
228
+ * Result after Docgenerator::Sectioning::Part#CR:
229
+
230
+ <<START>>
231
+
232
+ content
233
+
234
+ <<END>>
235
+
236
+ ===Docgenerator::Sectioning::Part#to_creole
237
+
238
+ content
239
+
240
+
241
+ ====:cr, :cR, :Cr, :CR for Docgenerator::Sectioning::Part#.to_creole
242
+ <<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
243
+
244
+ Default:
245
+ <<START>>
246
+ content
247
+ <<END>>
248
+
249
+ * Result after Docgenerator::Sectioning::Part#cr:
250
+
251
+ <<START>>
252
+ content
253
+
254
+ <<END>>
255
+
256
+ * Result after Docgenerator::Sectioning::Part#cR:
257
+
258
+ <<START>>
259
+ content
260
+
261
+ <<END>>
262
+
263
+ * Result after Docgenerator::Sectioning::Part#Cr:
264
+
265
+ <<START>>
266
+
267
+ content
268
+
269
+ <<END>>
270
+
271
+ * Result after Docgenerator::Sectioning::Part#CR:
272
+
273
+ <<START>>
274
+
275
+ content
276
+
277
+ <<END>>
278
+
279
+ =end
280
+ class Part << Docgenerator::Sectioning::DummySectioning
281
+ #This coding is empty - this is the manpage definition, not the implementation
282
+ end #class Part
283
+ end #module Sectioning
284
+ end #module Docgenerator
285
+ module Docgenerator
286
+ module Sectioning
287
+ =begin rdoc
288
+ =Docgenerator::Sectioning::Chapter
289
+
290
+ ==Attributes
291
+ Attribute required? HTML LaTeX ~keyval ConTeXt Text Wiki Creole Values
292
+ ====================================================================================================
293
+ lang : - X - - - - - -
294
+ id : - X - - - - - -
295
+ class : - X - - - - - -
296
+ style : - X - - - - - -
297
+ title : - X - - - - - -
298
+ dir : - X - - - - - -
299
+ onclick : - X - - - - - -
300
+ ondblclick : - X - - - - - -
301
+ onmousedown : - X - - - - - -
302
+ onmouseup : - X - - - - - -
303
+ onmouseover : - X - - - - - -
304
+ onmousemove : - X - - - - - -
305
+ onmouseout : - X - - - - - -
306
+ onkeypress : - X - - - - - -
307
+ onkeyup : - X - - - - - -
308
+ onkeydown : - X - - - - - -
309
+ short : - - X - - - - -
310
+
311
+
312
+ Docgenerator::Sectioning::Chapter can contain content.
313
+
314
+ ==Generate an object
315
+ test = Docgenerator::Sectioning::Chapter.new( {
316
+ #:lang => <<value>>, % optional, values: ["en", "de"]
317
+ #:id => <<value>>, % optional
318
+ #:class => <<value>>, % optional
319
+ #:style => <<value>>, % optional, values: [Docgenerator::CSS, String]
320
+ #:title => <<value>>, % optional
321
+ #:dir => <<value>>, % optional, values: ["ltr", "rtl"]
322
+ #:onclick => <<value>>, % optional
323
+ #:ondblclick => <<value>>, % optional
324
+ #:onmousedown => <<value>>, % optional
325
+ #:onmouseup => <<value>>, % optional
326
+ #:onmouseover => <<value>>, % optional
327
+ #:onmousemove => <<value>>, % optional
328
+ #:onmouseout => <<value>>, % optional
329
+ #:onkeypress => <<value>>, % optional
330
+ #:onkeyup => <<value>>, % optional
331
+ #:onkeydown => <<value>>, % optional
332
+ #:short => <<value>>, % optional
333
+ }, 'content')
334
+
335
+ Alternative generation
336
+ test = element(:chapter, {...Attributes...}, 'content' )
337
+
338
+
339
+ ==Outputs
340
+ ===Docgenerator::Sectioning::Chapter#to_latex
341
+ \chapter{content}
342
+
343
+ ====:cr, :cR, :Cr, :CR for Docgenerator::Sectioning::Chapter#.to_latex
344
+ <<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
345
+
346
+ Default:
347
+ <<START>>\chapter{content}<<END>>
348
+
349
+ * Result after Docgenerator::Sectioning::Chapter#cr:
350
+
351
+ <<START>>\chapter{content}
352
+ <<END>>
353
+
354
+ * Result after Docgenerator::Sectioning::Chapter#cR:
355
+
356
+ <<START>>\chapter{content}
357
+ <<END>>
358
+
359
+ * Result after Docgenerator::Sectioning::Chapter#Cr:
360
+
361
+ <<START>>
362
+ \chapter{content}
363
+ <<END>>
364
+
365
+ * Result after Docgenerator::Sectioning::Chapter#CR:
366
+
367
+ <<START>>
368
+ \chapter{content}
369
+ <<END>>
370
+
371
+ ===Docgenerator::Sectioning::Chapter#to_html
372
+ <span >content</span>
373
+
374
+ * No output routine defined for html - use a dummy
375
+ ===Docgenerator::Sectioning::Chapter#to_context
376
+ \chapter{content}
377
+
378
+ ====:cr, :cR, :Cr, :CR for Docgenerator::Sectioning::Chapter#.to_context
379
+ <<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
380
+
381
+ Default:
382
+ <<START>>\chapter{content}<<END>>
383
+
384
+ * Result after Docgenerator::Sectioning::Chapter#cr:
385
+
386
+ <<START>>\chapter{content}
387
+ <<END>>
388
+
389
+ * Result after Docgenerator::Sectioning::Chapter#cR:
390
+
391
+ <<START>>\chapter{content}
392
+ <<END>>
393
+
394
+ * Result after Docgenerator::Sectioning::Chapter#Cr:
395
+
396
+ <<START>>
397
+ \chapter{content}
398
+ <<END>>
399
+
400
+ * Result after Docgenerator::Sectioning::Chapter#CR:
401
+
402
+ <<START>>
403
+ \chapter{content}
404
+ <<END>>
405
+
406
+ ===Docgenerator::Sectioning::Chapter#to_text
407
+
408
+ content
409
+ ------------------------------
410
+
411
+
412
+ ====:cr, :cR, :Cr, :CR for Docgenerator::Sectioning::Chapter#.to_text
413
+ <<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
414
+
415
+ Default:
416
+ <<START>>
417
+ content
418
+ ------------------------------
419
+ <<END>>
420
+
421
+ * Result after Docgenerator::Sectioning::Chapter#cr:
422
+
423
+ <<START>>
424
+ content
425
+ ------------------------------
426
+
427
+ <<END>>
428
+
429
+ * Result after Docgenerator::Sectioning::Chapter#cR:
430
+
431
+ <<START>>
432
+ content
433
+ ------------------------------
434
+
435
+ <<END>>
436
+
437
+ * Result after Docgenerator::Sectioning::Chapter#Cr:
438
+
439
+ <<START>>
440
+
441
+ content
442
+ ------------------------------
443
+
444
+ <<END>>
445
+
446
+ * Result after Docgenerator::Sectioning::Chapter#CR:
447
+
448
+ <<START>>
449
+
450
+ content
451
+ ------------------------------
452
+
453
+ <<END>>
454
+
455
+ ===Docgenerator::Sectioning::Chapter#to_wiki
456
+
457
+ =content=
458
+
459
+
460
+ ====:cr, :cR, :Cr, :CR for Docgenerator::Sectioning::Chapter#.to_wiki
461
+ <<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
462
+
463
+ Default:
464
+ <<START>>
465
+ =content=
466
+ <<END>>
467
+
468
+ * Result after Docgenerator::Sectioning::Chapter#cr:
469
+
470
+ <<START>>
471
+ =content=
472
+
473
+ <<END>>
474
+
475
+ * Result after Docgenerator::Sectioning::Chapter#cR:
476
+
477
+ <<START>>
478
+ =content=
479
+
480
+ <<END>>
481
+
482
+ * Result after Docgenerator::Sectioning::Chapter#Cr:
483
+
484
+ <<START>>
485
+
486
+ =content=
487
+
488
+ <<END>>
489
+
490
+ * Result after Docgenerator::Sectioning::Chapter#CR:
491
+
492
+ <<START>>
493
+
494
+ =content=
495
+
496
+ <<END>>
497
+
498
+ ===Docgenerator::Sectioning::Chapter#to_creole
499
+
500
+ =content
501
+
502
+
503
+ ====:cr, :cR, :Cr, :CR for Docgenerator::Sectioning::Chapter#.to_creole
504
+ <<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
505
+
506
+ Default:
507
+ <<START>>
508
+ =content
509
+ <<END>>
510
+
511
+ * Result after Docgenerator::Sectioning::Chapter#cr:
512
+
513
+ <<START>>
514
+ =content
515
+
516
+ <<END>>
517
+
518
+ * Result after Docgenerator::Sectioning::Chapter#cR:
519
+
520
+ <<START>>
521
+ =content
522
+
523
+ <<END>>
524
+
525
+ * Result after Docgenerator::Sectioning::Chapter#Cr:
526
+
527
+ <<START>>
528
+
529
+ =content
530
+
531
+ <<END>>
532
+
533
+ * Result after Docgenerator::Sectioning::Chapter#CR:
534
+
535
+ <<START>>
536
+
537
+ =content
538
+
539
+ <<END>>
540
+
541
+ =end
542
+ class Chapter << Docgenerator::Sectioning::DummySectioning
543
+ #This coding is empty - this is the manpage definition, not the implementation
544
+ end #class Chapter
545
+ end #module Sectioning
546
+ end #module Docgenerator
547
+ module Docgenerator
548
+ module Sectioning
549
+ =begin rdoc
550
+ =Docgenerator::Sectioning::Section
551
+
552
+ ==Attributes
553
+ Attribute required? HTML LaTeX ~keyval ConTeXt Text Wiki Creole Values
554
+ ====================================================================================================
555
+ lang : - X - - - - - -
556
+ id : - X - - - - - -
557
+ class : - X - - - - - -
558
+ style : - X - - - - - -
559
+ title : - X - - - - - -
560
+ dir : - X - - - - - -
561
+ onclick : - X - - - - - -
562
+ ondblclick : - X - - - - - -
563
+ onmousedown : - X - - - - - -
564
+ onmouseup : - X - - - - - -
565
+ onmouseover : - X - - - - - -
566
+ onmousemove : - X - - - - - -
567
+ onmouseout : - X - - - - - -
568
+ onkeypress : - X - - - - - -
569
+ onkeyup : - X - - - - - -
570
+ onkeydown : - X - - - - - -
571
+ short : - - X - - - - -
572
+
573
+
574
+ Docgenerator::Sectioning::Section can contain content.
575
+
576
+ ==Generate an object
577
+ test = Docgenerator::Sectioning::Section.new( {
578
+ #:lang => <<value>>, % optional, values: ["en", "de"]
579
+ #:id => <<value>>, % optional
580
+ #:class => <<value>>, % optional
581
+ #:style => <<value>>, % optional, values: [Docgenerator::CSS, String]
582
+ #:title => <<value>>, % optional
583
+ #:dir => <<value>>, % optional, values: ["ltr", "rtl"]
584
+ #:onclick => <<value>>, % optional
585
+ #:ondblclick => <<value>>, % optional
586
+ #:onmousedown => <<value>>, % optional
587
+ #:onmouseup => <<value>>, % optional
588
+ #:onmouseover => <<value>>, % optional
589
+ #:onmousemove => <<value>>, % optional
590
+ #:onmouseout => <<value>>, % optional
591
+ #:onkeypress => <<value>>, % optional
592
+ #:onkeyup => <<value>>, % optional
593
+ #:onkeydown => <<value>>, % optional
594
+ #:short => <<value>>, % optional
595
+ }, 'content')
596
+
597
+ Alternative generation
598
+ test = element(:section, {...Attributes...}, 'content' )
599
+ test = element(:h1, {...Attributes...}, 'content' )
600
+
601
+
602
+ ==Outputs
603
+ ===Docgenerator::Sectioning::Section#to_latex
604
+ \section{content}
605
+
606
+ ====:cr, :cR, :Cr, :CR for Docgenerator::Sectioning::Section#.to_latex
607
+ <<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
608
+
609
+ Default:
610
+ <<START>>\section{content}<<END>>
611
+
612
+ * Result after Docgenerator::Sectioning::Section#cr:
613
+
614
+ <<START>>\section{content}
615
+ <<END>>
616
+
617
+ * Result after Docgenerator::Sectioning::Section#cR:
618
+
619
+ <<START>>\section{content}
620
+ <<END>>
621
+
622
+ * Result after Docgenerator::Sectioning::Section#Cr:
623
+
624
+ <<START>>
625
+ \section{content}
626
+ <<END>>
627
+
628
+ * Result after Docgenerator::Sectioning::Section#CR:
629
+
630
+ <<START>>
631
+ \section{content}
632
+ <<END>>
633
+
634
+ ===Docgenerator::Sectioning::Section#to_html
635
+ <h1 >content</h1>
636
+
637
+ ====:cr, :cR, :Cr, :CR for Docgenerator::Sectioning::Section#.to_html
638
+ <<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
639
+
640
+ Default:
641
+ <<START>><h1 >content</h1><<END>>
642
+
643
+ * Result after Docgenerator::Sectioning::Section#cr:
644
+
645
+ <<START>><h1 >content</h1>
646
+ <<END>>
647
+
648
+ * Result after Docgenerator::Sectioning::Section#cR:
649
+
650
+ <<START>><h1 >
651
+ content
652
+ </h1>
653
+ <<END>>
654
+
655
+ * Result after Docgenerator::Sectioning::Section#Cr:
656
+
657
+ <<START>>
658
+ <h1 >
659
+ content
660
+ </h1>
661
+ <<END>>
662
+
663
+ * Result after Docgenerator::Sectioning::Section#CR:
664
+
665
+ <<START>>
666
+ <h1 >
667
+ content
668
+ </h1>
669
+ <<END>>
670
+
671
+ ===Docgenerator::Sectioning::Section#to_context
672
+ \section{content}
673
+
674
+ ====:cr, :cR, :Cr, :CR for Docgenerator::Sectioning::Section#.to_context
675
+ <<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
676
+
677
+ Default:
678
+ <<START>>\section{content}<<END>>
679
+
680
+ * Result after Docgenerator::Sectioning::Section#cr:
681
+
682
+ <<START>>\section{content}
683
+ <<END>>
684
+
685
+ * Result after Docgenerator::Sectioning::Section#cR:
686
+
687
+ <<START>>\section{content}
688
+ <<END>>
689
+
690
+ * Result after Docgenerator::Sectioning::Section#Cr:
691
+
692
+ <<START>>
693
+ \section{content}
694
+ <<END>>
695
+
696
+ * Result after Docgenerator::Sectioning::Section#CR:
697
+
698
+ <<START>>
699
+ \section{content}
700
+ <<END>>
701
+
702
+ ===Docgenerator::Sectioning::Section#to_text
703
+
704
+ content
705
+ ------------------------------
706
+
707
+
708
+ ====:cr, :cR, :Cr, :CR for Docgenerator::Sectioning::Section#.to_text
709
+ <<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
710
+
711
+ Default:
712
+ <<START>>
713
+ content
714
+ ------------------------------
715
+ <<END>>
716
+
717
+ * Result after Docgenerator::Sectioning::Section#cr:
718
+
719
+ <<START>>
720
+ content
721
+ ------------------------------
722
+
723
+ <<END>>
724
+
725
+ * Result after Docgenerator::Sectioning::Section#cR:
726
+
727
+ <<START>>
728
+ content
729
+ ------------------------------
730
+
731
+ <<END>>
732
+
733
+ * Result after Docgenerator::Sectioning::Section#Cr:
734
+
735
+ <<START>>
736
+
737
+ content
738
+ ------------------------------
739
+
740
+ <<END>>
741
+
742
+ * Result after Docgenerator::Sectioning::Section#CR:
743
+
744
+ <<START>>
745
+
746
+ content
747
+ ------------------------------
748
+
749
+ <<END>>
750
+
751
+ ===Docgenerator::Sectioning::Section#to_wiki
752
+
753
+ ==content==
754
+
755
+
756
+ ====:cr, :cR, :Cr, :CR for Docgenerator::Sectioning::Section#.to_wiki
757
+ <<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
758
+
759
+ Default:
760
+ <<START>>
761
+ ==content==
762
+ <<END>>
763
+
764
+ * Result after Docgenerator::Sectioning::Section#cr:
765
+
766
+ <<START>>
767
+ ==content==
768
+
769
+ <<END>>
770
+
771
+ * Result after Docgenerator::Sectioning::Section#cR:
772
+
773
+ <<START>>
774
+ ==content==
775
+
776
+ <<END>>
777
+
778
+ * Result after Docgenerator::Sectioning::Section#Cr:
779
+
780
+ <<START>>
781
+
782
+ ==content==
783
+
784
+ <<END>>
785
+
786
+ * Result after Docgenerator::Sectioning::Section#CR:
787
+
788
+ <<START>>
789
+
790
+ ==content==
791
+
792
+ <<END>>
793
+
794
+ ===Docgenerator::Sectioning::Section#to_creole
795
+
796
+ ==content
797
+
798
+
799
+ ====:cr, :cR, :Cr, :CR for Docgenerator::Sectioning::Section#.to_creole
800
+ <<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
801
+
802
+ Default:
803
+ <<START>>
804
+ ==content
805
+ <<END>>
806
+
807
+ * Result after Docgenerator::Sectioning::Section#cr:
808
+
809
+ <<START>>
810
+ ==content
811
+
812
+ <<END>>
813
+
814
+ * Result after Docgenerator::Sectioning::Section#cR:
815
+
816
+ <<START>>
817
+ ==content
818
+
819
+ <<END>>
820
+
821
+ * Result after Docgenerator::Sectioning::Section#Cr:
822
+
823
+ <<START>>
824
+
825
+ ==content
826
+
827
+ <<END>>
828
+
829
+ * Result after Docgenerator::Sectioning::Section#CR:
830
+
831
+ <<START>>
832
+
833
+ ==content
834
+
835
+ <<END>>
836
+
837
+ =end
838
+ class Section << Docgenerator::Sectioning::DummySectioning
839
+ #This coding is empty - this is the manpage definition, not the implementation
840
+ end #class Section
841
+ end #module Sectioning
842
+ end #module Docgenerator
843
+ module Docgenerator
844
+ module Sectioning
845
+ =begin rdoc
846
+ =Docgenerator::Sectioning::Subsection
847
+
848
+ ==Attributes
849
+ Attribute required? HTML LaTeX ~keyval ConTeXt Text Wiki Creole Values
850
+ ====================================================================================================
851
+ lang : - X - - - - - -
852
+ id : - X - - - - - -
853
+ class : - X - - - - - -
854
+ style : - X - - - - - -
855
+ title : - X - - - - - -
856
+ dir : - X - - - - - -
857
+ onclick : - X - - - - - -
858
+ ondblclick : - X - - - - - -
859
+ onmousedown : - X - - - - - -
860
+ onmouseup : - X - - - - - -
861
+ onmouseover : - X - - - - - -
862
+ onmousemove : - X - - - - - -
863
+ onmouseout : - X - - - - - -
864
+ onkeypress : - X - - - - - -
865
+ onkeyup : - X - - - - - -
866
+ onkeydown : - X - - - - - -
867
+ short : - - X - - - - -
868
+
869
+
870
+ Docgenerator::Sectioning::Subsection can contain content.
871
+
872
+ ==Generate an object
873
+ test = Docgenerator::Sectioning::Subsection.new( {
874
+ #:lang => <<value>>, % optional, values: ["en", "de"]
875
+ #:id => <<value>>, % optional
876
+ #:class => <<value>>, % optional
877
+ #:style => <<value>>, % optional, values: [Docgenerator::CSS, String]
878
+ #:title => <<value>>, % optional
879
+ #:dir => <<value>>, % optional, values: ["ltr", "rtl"]
880
+ #:onclick => <<value>>, % optional
881
+ #:ondblclick => <<value>>, % optional
882
+ #:onmousedown => <<value>>, % optional
883
+ #:onmouseup => <<value>>, % optional
884
+ #:onmouseover => <<value>>, % optional
885
+ #:onmousemove => <<value>>, % optional
886
+ #:onmouseout => <<value>>, % optional
887
+ #:onkeypress => <<value>>, % optional
888
+ #:onkeyup => <<value>>, % optional
889
+ #:onkeydown => <<value>>, % optional
890
+ #:short => <<value>>, % optional
891
+ }, 'content')
892
+
893
+ Alternative generation
894
+ test = element(:subsection, {...Attributes...}, 'content' )
895
+ test = element(:h2, {...Attributes...}, 'content' )
896
+
897
+
898
+ ==Outputs
899
+ ===Docgenerator::Sectioning::Subsection#to_latex
900
+ \subsection{content}
901
+
902
+ ====:cr, :cR, :Cr, :CR for Docgenerator::Sectioning::Subsection#.to_latex
903
+ <<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
904
+
905
+ Default:
906
+ <<START>>\subsection{content}<<END>>
907
+
908
+ * Result after Docgenerator::Sectioning::Subsection#cr:
909
+
910
+ <<START>>\subsection{content}
911
+ <<END>>
912
+
913
+ * Result after Docgenerator::Sectioning::Subsection#cR:
914
+
915
+ <<START>>\subsection{content}
916
+ <<END>>
917
+
918
+ * Result after Docgenerator::Sectioning::Subsection#Cr:
919
+
920
+ <<START>>
921
+ \subsection{content}
922
+ <<END>>
923
+
924
+ * Result after Docgenerator::Sectioning::Subsection#CR:
925
+
926
+ <<START>>
927
+ \subsection{content}
928
+ <<END>>
929
+
930
+ ===Docgenerator::Sectioning::Subsection#to_html
931
+ <h2 >content</h2>
932
+
933
+ ====:cr, :cR, :Cr, :CR for Docgenerator::Sectioning::Subsection#.to_html
934
+ <<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
935
+
936
+ Default:
937
+ <<START>><h2 >content</h2><<END>>
938
+
939
+ * Result after Docgenerator::Sectioning::Subsection#cr:
940
+
941
+ <<START>><h2 >content</h2>
942
+ <<END>>
943
+
944
+ * Result after Docgenerator::Sectioning::Subsection#cR:
945
+
946
+ <<START>><h2 >
947
+ content
948
+ </h2>
949
+ <<END>>
950
+
951
+ * Result after Docgenerator::Sectioning::Subsection#Cr:
952
+
953
+ <<START>>
954
+ <h2 >
955
+ content
956
+ </h2>
957
+ <<END>>
958
+
959
+ * Result after Docgenerator::Sectioning::Subsection#CR:
960
+
961
+ <<START>>
962
+ <h2 >
963
+ content
964
+ </h2>
965
+ <<END>>
966
+
967
+ ===Docgenerator::Sectioning::Subsection#to_context
968
+ \subsection{content}
969
+
970
+ ====:cr, :cR, :Cr, :CR for Docgenerator::Sectioning::Subsection#.to_context
971
+ <<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
972
+
973
+ Default:
974
+ <<START>>\subsection{content}<<END>>
975
+
976
+ * Result after Docgenerator::Sectioning::Subsection#cr:
977
+
978
+ <<START>>\subsection{content}
979
+ <<END>>
980
+
981
+ * Result after Docgenerator::Sectioning::Subsection#cR:
982
+
983
+ <<START>>\subsection{content}
984
+ <<END>>
985
+
986
+ * Result after Docgenerator::Sectioning::Subsection#Cr:
987
+
988
+ <<START>>
989
+ \subsection{content}
990
+ <<END>>
991
+
992
+ * Result after Docgenerator::Sectioning::Subsection#CR:
993
+
994
+ <<START>>
995
+ \subsection{content}
996
+ <<END>>
997
+
998
+ ===Docgenerator::Sectioning::Subsection#to_text
999
+
1000
+ content
1001
+ ------------------------------
1002
+
1003
+
1004
+ ====:cr, :cR, :Cr, :CR for Docgenerator::Sectioning::Subsection#.to_text
1005
+ <<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
1006
+
1007
+ Default:
1008
+ <<START>>
1009
+ content
1010
+ ------------------------------
1011
+ <<END>>
1012
+
1013
+ * Result after Docgenerator::Sectioning::Subsection#cr:
1014
+
1015
+ <<START>>
1016
+ content
1017
+ ------------------------------
1018
+
1019
+ <<END>>
1020
+
1021
+ * Result after Docgenerator::Sectioning::Subsection#cR:
1022
+
1023
+ <<START>>
1024
+ content
1025
+ ------------------------------
1026
+
1027
+ <<END>>
1028
+
1029
+ * Result after Docgenerator::Sectioning::Subsection#Cr:
1030
+
1031
+ <<START>>
1032
+
1033
+ content
1034
+ ------------------------------
1035
+
1036
+ <<END>>
1037
+
1038
+ * Result after Docgenerator::Sectioning::Subsection#CR:
1039
+
1040
+ <<START>>
1041
+
1042
+ content
1043
+ ------------------------------
1044
+
1045
+ <<END>>
1046
+
1047
+ ===Docgenerator::Sectioning::Subsection#to_wiki
1048
+
1049
+ ===content===
1050
+
1051
+
1052
+ ====:cr, :cR, :Cr, :CR for Docgenerator::Sectioning::Subsection#.to_wiki
1053
+ <<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
1054
+
1055
+ Default:
1056
+ <<START>>
1057
+ ===content===
1058
+ <<END>>
1059
+
1060
+ * Result after Docgenerator::Sectioning::Subsection#cr:
1061
+
1062
+ <<START>>
1063
+ ===content===
1064
+
1065
+ <<END>>
1066
+
1067
+ * Result after Docgenerator::Sectioning::Subsection#cR:
1068
+
1069
+ <<START>>
1070
+ ===content===
1071
+
1072
+ <<END>>
1073
+
1074
+ * Result after Docgenerator::Sectioning::Subsection#Cr:
1075
+
1076
+ <<START>>
1077
+
1078
+ ===content===
1079
+
1080
+ <<END>>
1081
+
1082
+ * Result after Docgenerator::Sectioning::Subsection#CR:
1083
+
1084
+ <<START>>
1085
+
1086
+ ===content===
1087
+
1088
+ <<END>>
1089
+
1090
+ ===Docgenerator::Sectioning::Subsection#to_creole
1091
+
1092
+ ===content
1093
+
1094
+
1095
+ ====:cr, :cR, :Cr, :CR for Docgenerator::Sectioning::Subsection#.to_creole
1096
+ <<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
1097
+
1098
+ Default:
1099
+ <<START>>
1100
+ ===content
1101
+ <<END>>
1102
+
1103
+ * Result after Docgenerator::Sectioning::Subsection#cr:
1104
+
1105
+ <<START>>
1106
+ ===content
1107
+
1108
+ <<END>>
1109
+
1110
+ * Result after Docgenerator::Sectioning::Subsection#cR:
1111
+
1112
+ <<START>>
1113
+ ===content
1114
+
1115
+ <<END>>
1116
+
1117
+ * Result after Docgenerator::Sectioning::Subsection#Cr:
1118
+
1119
+ <<START>>
1120
+
1121
+ ===content
1122
+
1123
+ <<END>>
1124
+
1125
+ * Result after Docgenerator::Sectioning::Subsection#CR:
1126
+
1127
+ <<START>>
1128
+
1129
+ ===content
1130
+
1131
+ <<END>>
1132
+
1133
+ =end
1134
+ class Subsection << Docgenerator::Sectioning::DummySectioning
1135
+ #This coding is empty - this is the manpage definition, not the implementation
1136
+ end #class Subsection
1137
+ end #module Sectioning
1138
+ end #module Docgenerator
1139
+ module Docgenerator
1140
+ module Sectioning
1141
+ =begin rdoc
1142
+ =Docgenerator::Sectioning::Subsubsection
1143
+
1144
+ ==Attributes
1145
+ Attribute required? HTML LaTeX ~keyval ConTeXt Text Wiki Creole Values
1146
+ ====================================================================================================
1147
+ lang : - X - - - - - -
1148
+ id : - X - - - - - -
1149
+ class : - X - - - - - -
1150
+ style : - X - - - - - -
1151
+ title : - X - - - - - -
1152
+ dir : - X - - - - - -
1153
+ onclick : - X - - - - - -
1154
+ ondblclick : - X - - - - - -
1155
+ onmousedown : - X - - - - - -
1156
+ onmouseup : - X - - - - - -
1157
+ onmouseover : - X - - - - - -
1158
+ onmousemove : - X - - - - - -
1159
+ onmouseout : - X - - - - - -
1160
+ onkeypress : - X - - - - - -
1161
+ onkeyup : - X - - - - - -
1162
+ onkeydown : - X - - - - - -
1163
+ short : - - X - - - - -
1164
+
1165
+
1166
+ Docgenerator::Sectioning::Subsubsection can contain content.
1167
+
1168
+ ==Generate an object
1169
+ test = Docgenerator::Sectioning::Subsubsection.new( {
1170
+ #:lang => <<value>>, % optional, values: ["en", "de"]
1171
+ #:id => <<value>>, % optional
1172
+ #:class => <<value>>, % optional
1173
+ #:style => <<value>>, % optional, values: [Docgenerator::CSS, String]
1174
+ #:title => <<value>>, % optional
1175
+ #:dir => <<value>>, % optional, values: ["ltr", "rtl"]
1176
+ #:onclick => <<value>>, % optional
1177
+ #:ondblclick => <<value>>, % optional
1178
+ #:onmousedown => <<value>>, % optional
1179
+ #:onmouseup => <<value>>, % optional
1180
+ #:onmouseover => <<value>>, % optional
1181
+ #:onmousemove => <<value>>, % optional
1182
+ #:onmouseout => <<value>>, % optional
1183
+ #:onkeypress => <<value>>, % optional
1184
+ #:onkeyup => <<value>>, % optional
1185
+ #:onkeydown => <<value>>, % optional
1186
+ #:short => <<value>>, % optional
1187
+ }, 'content')
1188
+
1189
+ Alternative generation
1190
+ test = element(:subsubsection, {...Attributes...}, 'content' )
1191
+ test = element(:h3, {...Attributes...}, 'content' )
1192
+
1193
+
1194
+ ==Outputs
1195
+ ===Docgenerator::Sectioning::Subsubsection#to_latex
1196
+ \subsubsection{content}
1197
+
1198
+ ====:cr, :cR, :Cr, :CR for Docgenerator::Sectioning::Subsubsection#.to_latex
1199
+ <<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
1200
+
1201
+ Default:
1202
+ <<START>>\subsubsection{content}<<END>>
1203
+
1204
+ * Result after Docgenerator::Sectioning::Subsubsection#cr:
1205
+
1206
+ <<START>>\subsubsection{content}
1207
+ <<END>>
1208
+
1209
+ * Result after Docgenerator::Sectioning::Subsubsection#cR:
1210
+
1211
+ <<START>>\subsubsection{content}
1212
+ <<END>>
1213
+
1214
+ * Result after Docgenerator::Sectioning::Subsubsection#Cr:
1215
+
1216
+ <<START>>
1217
+ \subsubsection{content}
1218
+ <<END>>
1219
+
1220
+ * Result after Docgenerator::Sectioning::Subsubsection#CR:
1221
+
1222
+ <<START>>
1223
+ \subsubsection{content}
1224
+ <<END>>
1225
+
1226
+ ===Docgenerator::Sectioning::Subsubsection#to_html
1227
+ <h3 >content</h3>
1228
+
1229
+ ====:cr, :cR, :Cr, :CR for Docgenerator::Sectioning::Subsubsection#.to_html
1230
+ <<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
1231
+
1232
+ Default:
1233
+ <<START>><h3 >content</h3><<END>>
1234
+
1235
+ * Result after Docgenerator::Sectioning::Subsubsection#cr:
1236
+
1237
+ <<START>><h3 >content</h3>
1238
+ <<END>>
1239
+
1240
+ * Result after Docgenerator::Sectioning::Subsubsection#cR:
1241
+
1242
+ <<START>><h3 >
1243
+ content
1244
+ </h3>
1245
+ <<END>>
1246
+
1247
+ * Result after Docgenerator::Sectioning::Subsubsection#Cr:
1248
+
1249
+ <<START>>
1250
+ <h3 >
1251
+ content
1252
+ </h3>
1253
+ <<END>>
1254
+
1255
+ * Result after Docgenerator::Sectioning::Subsubsection#CR:
1256
+
1257
+ <<START>>
1258
+ <h3 >
1259
+ content
1260
+ </h3>
1261
+ <<END>>
1262
+
1263
+ ===Docgenerator::Sectioning::Subsubsection#to_context
1264
+ \subsubsection{content}
1265
+
1266
+ ====:cr, :cR, :Cr, :CR for Docgenerator::Sectioning::Subsubsection#.to_context
1267
+ <<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
1268
+
1269
+ Default:
1270
+ <<START>>\subsubsection{content}<<END>>
1271
+
1272
+ * Result after Docgenerator::Sectioning::Subsubsection#cr:
1273
+
1274
+ <<START>>\subsubsection{content}
1275
+ <<END>>
1276
+
1277
+ * Result after Docgenerator::Sectioning::Subsubsection#cR:
1278
+
1279
+ <<START>>\subsubsection{content}
1280
+ <<END>>
1281
+
1282
+ * Result after Docgenerator::Sectioning::Subsubsection#Cr:
1283
+
1284
+ <<START>>
1285
+ \subsubsection{content}
1286
+ <<END>>
1287
+
1288
+ * Result after Docgenerator::Sectioning::Subsubsection#CR:
1289
+
1290
+ <<START>>
1291
+ \subsubsection{content}
1292
+ <<END>>
1293
+
1294
+ ===Docgenerator::Sectioning::Subsubsection#to_text
1295
+
1296
+ content
1297
+ ------------------------------
1298
+
1299
+
1300
+ ====:cr, :cR, :Cr, :CR for Docgenerator::Sectioning::Subsubsection#.to_text
1301
+ <<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
1302
+
1303
+ Default:
1304
+ <<START>>
1305
+ content
1306
+ ------------------------------
1307
+ <<END>>
1308
+
1309
+ * Result after Docgenerator::Sectioning::Subsubsection#cr:
1310
+
1311
+ <<START>>
1312
+ content
1313
+ ------------------------------
1314
+
1315
+ <<END>>
1316
+
1317
+ * Result after Docgenerator::Sectioning::Subsubsection#cR:
1318
+
1319
+ <<START>>
1320
+ content
1321
+ ------------------------------
1322
+
1323
+ <<END>>
1324
+
1325
+ * Result after Docgenerator::Sectioning::Subsubsection#Cr:
1326
+
1327
+ <<START>>
1328
+
1329
+ content
1330
+ ------------------------------
1331
+
1332
+ <<END>>
1333
+
1334
+ * Result after Docgenerator::Sectioning::Subsubsection#CR:
1335
+
1336
+ <<START>>
1337
+
1338
+ content
1339
+ ------------------------------
1340
+
1341
+ <<END>>
1342
+
1343
+ ===Docgenerator::Sectioning::Subsubsection#to_wiki
1344
+
1345
+ ====content====
1346
+
1347
+
1348
+ ====:cr, :cR, :Cr, :CR for Docgenerator::Sectioning::Subsubsection#.to_wiki
1349
+ <<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
1350
+
1351
+ Default:
1352
+ <<START>>
1353
+ ====content====
1354
+ <<END>>
1355
+
1356
+ * Result after Docgenerator::Sectioning::Subsubsection#cr:
1357
+
1358
+ <<START>>
1359
+ ====content====
1360
+
1361
+ <<END>>
1362
+
1363
+ * Result after Docgenerator::Sectioning::Subsubsection#cR:
1364
+
1365
+ <<START>>
1366
+ ====content====
1367
+
1368
+ <<END>>
1369
+
1370
+ * Result after Docgenerator::Sectioning::Subsubsection#Cr:
1371
+
1372
+ <<START>>
1373
+
1374
+ ====content====
1375
+
1376
+ <<END>>
1377
+
1378
+ * Result after Docgenerator::Sectioning::Subsubsection#CR:
1379
+
1380
+ <<START>>
1381
+
1382
+ ====content====
1383
+
1384
+ <<END>>
1385
+
1386
+ ===Docgenerator::Sectioning::Subsubsection#to_creole
1387
+
1388
+ ====content
1389
+
1390
+
1391
+ ====:cr, :cR, :Cr, :CR for Docgenerator::Sectioning::Subsubsection#.to_creole
1392
+ <<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
1393
+
1394
+ Default:
1395
+ <<START>>
1396
+ ====content
1397
+ <<END>>
1398
+
1399
+ * Result after Docgenerator::Sectioning::Subsubsection#cr:
1400
+
1401
+ <<START>>
1402
+ ====content
1403
+
1404
+ <<END>>
1405
+
1406
+ * Result after Docgenerator::Sectioning::Subsubsection#cR:
1407
+
1408
+ <<START>>
1409
+ ====content
1410
+
1411
+ <<END>>
1412
+
1413
+ * Result after Docgenerator::Sectioning::Subsubsection#Cr:
1414
+
1415
+ <<START>>
1416
+
1417
+ ====content
1418
+
1419
+ <<END>>
1420
+
1421
+ * Result after Docgenerator::Sectioning::Subsubsection#CR:
1422
+
1423
+ <<START>>
1424
+
1425
+ ====content
1426
+
1427
+ <<END>>
1428
+
1429
+ =end
1430
+ class Subsubsection << Docgenerator::Sectioning::DummySectioning
1431
+ #This coding is empty - this is the manpage definition, not the implementation
1432
+ end #class Subsubsection
1433
+ end #module Sectioning
1434
+ end #module Docgenerator
1435
+ module Docgenerator
1436
+ module Sectioning
1437
+ =begin rdoc
1438
+ =Docgenerator::Sectioning::Paragraph
1439
+
1440
+ ==Attributes
1441
+ Attribute required? HTML LaTeX ~keyval ConTeXt Text Wiki Creole Values
1442
+ ====================================================================================================
1443
+ lang : - X - - - - - -
1444
+ id : - X - - - - - -
1445
+ class : - X - - - - - -
1446
+ style : - X - - - - - -
1447
+ title : - X - - - - - -
1448
+ dir : - X - - - - - -
1449
+ onclick : - X - - - - - -
1450
+ ondblclick : - X - - - - - -
1451
+ onmousedown : - X - - - - - -
1452
+ onmouseup : - X - - - - - -
1453
+ onmouseover : - X - - - - - -
1454
+ onmousemove : - X - - - - - -
1455
+ onmouseout : - X - - - - - -
1456
+ onkeypress : - X - - - - - -
1457
+ onkeyup : - X - - - - - -
1458
+ onkeydown : - X - - - - - -
1459
+ short : - - X - - - - -
1460
+
1461
+
1462
+ Docgenerator::Sectioning::Paragraph can contain content.
1463
+
1464
+ ==Generate an object
1465
+ test = Docgenerator::Sectioning::Paragraph.new( {
1466
+ #:lang => <<value>>, % optional, values: ["en", "de"]
1467
+ #:id => <<value>>, % optional
1468
+ #:class => <<value>>, % optional
1469
+ #:style => <<value>>, % optional, values: [Docgenerator::CSS, String]
1470
+ #:title => <<value>>, % optional
1471
+ #:dir => <<value>>, % optional, values: ["ltr", "rtl"]
1472
+ #:onclick => <<value>>, % optional
1473
+ #:ondblclick => <<value>>, % optional
1474
+ #:onmousedown => <<value>>, % optional
1475
+ #:onmouseup => <<value>>, % optional
1476
+ #:onmouseover => <<value>>, % optional
1477
+ #:onmousemove => <<value>>, % optional
1478
+ #:onmouseout => <<value>>, % optional
1479
+ #:onkeypress => <<value>>, % optional
1480
+ #:onkeyup => <<value>>, % optional
1481
+ #:onkeydown => <<value>>, % optional
1482
+ #:short => <<value>>, % optional
1483
+ }, 'content')
1484
+
1485
+ Alternative generation
1486
+ test = element(:paragraph, {...Attributes...}, 'content' )
1487
+ test = element(:h4, {...Attributes...}, 'content' )
1488
+
1489
+
1490
+ ==Outputs
1491
+ ===Docgenerator::Sectioning::Paragraph#to_latex
1492
+ \paragraph{content}
1493
+
1494
+ ====:cr, :cR, :Cr, :CR for Docgenerator::Sectioning::Paragraph#.to_latex
1495
+ <<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
1496
+
1497
+ Default:
1498
+ <<START>>\paragraph{content}<<END>>
1499
+
1500
+ * Result after Docgenerator::Sectioning::Paragraph#cr:
1501
+
1502
+ <<START>>\paragraph{content}
1503
+ <<END>>
1504
+
1505
+ * Result after Docgenerator::Sectioning::Paragraph#cR:
1506
+
1507
+ <<START>>\paragraph{content}
1508
+ <<END>>
1509
+
1510
+ * Result after Docgenerator::Sectioning::Paragraph#Cr:
1511
+
1512
+ <<START>>
1513
+ \paragraph{content}
1514
+ <<END>>
1515
+
1516
+ * Result after Docgenerator::Sectioning::Paragraph#CR:
1517
+
1518
+ <<START>>
1519
+ \paragraph{content}
1520
+ <<END>>
1521
+
1522
+ ===Docgenerator::Sectioning::Paragraph#to_html
1523
+ <h4 >content</h4>
1524
+
1525
+ ====:cr, :cR, :Cr, :CR for Docgenerator::Sectioning::Paragraph#.to_html
1526
+ <<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
1527
+
1528
+ Default:
1529
+ <<START>><h4 >content</h4><<END>>
1530
+
1531
+ * Result after Docgenerator::Sectioning::Paragraph#cr:
1532
+
1533
+ <<START>><h4 >content</h4>
1534
+ <<END>>
1535
+
1536
+ * Result after Docgenerator::Sectioning::Paragraph#cR:
1537
+
1538
+ <<START>><h4 >
1539
+ content
1540
+ </h4>
1541
+ <<END>>
1542
+
1543
+ * Result after Docgenerator::Sectioning::Paragraph#Cr:
1544
+
1545
+ <<START>>
1546
+ <h4 >
1547
+ content
1548
+ </h4>
1549
+ <<END>>
1550
+
1551
+ * Result after Docgenerator::Sectioning::Paragraph#CR:
1552
+
1553
+ <<START>>
1554
+ <h4 >
1555
+ content
1556
+ </h4>
1557
+ <<END>>
1558
+
1559
+ ===Docgenerator::Sectioning::Paragraph#to_context
1560
+ \paragraph{content}
1561
+
1562
+ ====:cr, :cR, :Cr, :CR for Docgenerator::Sectioning::Paragraph#.to_context
1563
+ <<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
1564
+
1565
+ Default:
1566
+ <<START>>\paragraph{content}<<END>>
1567
+
1568
+ * Result after Docgenerator::Sectioning::Paragraph#cr:
1569
+
1570
+ <<START>>\paragraph{content}
1571
+ <<END>>
1572
+
1573
+ * Result after Docgenerator::Sectioning::Paragraph#cR:
1574
+
1575
+ <<START>>\paragraph{content}
1576
+ <<END>>
1577
+
1578
+ * Result after Docgenerator::Sectioning::Paragraph#Cr:
1579
+
1580
+ <<START>>
1581
+ \paragraph{content}
1582
+ <<END>>
1583
+
1584
+ * Result after Docgenerator::Sectioning::Paragraph#CR:
1585
+
1586
+ <<START>>
1587
+ \paragraph{content}
1588
+ <<END>>
1589
+
1590
+ ===Docgenerator::Sectioning::Paragraph#to_text
1591
+
1592
+ content
1593
+ ------------------------------
1594
+
1595
+
1596
+ ====:cr, :cR, :Cr, :CR for Docgenerator::Sectioning::Paragraph#.to_text
1597
+ <<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
1598
+
1599
+ Default:
1600
+ <<START>>
1601
+ content
1602
+ ------------------------------
1603
+ <<END>>
1604
+
1605
+ * Result after Docgenerator::Sectioning::Paragraph#cr:
1606
+
1607
+ <<START>>
1608
+ content
1609
+ ------------------------------
1610
+
1611
+ <<END>>
1612
+
1613
+ * Result after Docgenerator::Sectioning::Paragraph#cR:
1614
+
1615
+ <<START>>
1616
+ content
1617
+ ------------------------------
1618
+
1619
+ <<END>>
1620
+
1621
+ * Result after Docgenerator::Sectioning::Paragraph#Cr:
1622
+
1623
+ <<START>>
1624
+
1625
+ content
1626
+ ------------------------------
1627
+
1628
+ <<END>>
1629
+
1630
+ * Result after Docgenerator::Sectioning::Paragraph#CR:
1631
+
1632
+ <<START>>
1633
+
1634
+ content
1635
+ ------------------------------
1636
+
1637
+ <<END>>
1638
+
1639
+ ===Docgenerator::Sectioning::Paragraph#to_wiki
1640
+
1641
+ =====content=====
1642
+
1643
+
1644
+ ====:cr, :cR, :Cr, :CR for Docgenerator::Sectioning::Paragraph#.to_wiki
1645
+ <<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
1646
+
1647
+ Default:
1648
+ <<START>>
1649
+ =====content=====
1650
+ <<END>>
1651
+
1652
+ * Result after Docgenerator::Sectioning::Paragraph#cr:
1653
+
1654
+ <<START>>
1655
+ =====content=====
1656
+
1657
+ <<END>>
1658
+
1659
+ * Result after Docgenerator::Sectioning::Paragraph#cR:
1660
+
1661
+ <<START>>
1662
+ =====content=====
1663
+
1664
+ <<END>>
1665
+
1666
+ * Result after Docgenerator::Sectioning::Paragraph#Cr:
1667
+
1668
+ <<START>>
1669
+
1670
+ =====content=====
1671
+
1672
+ <<END>>
1673
+
1674
+ * Result after Docgenerator::Sectioning::Paragraph#CR:
1675
+
1676
+ <<START>>
1677
+
1678
+ =====content=====
1679
+
1680
+ <<END>>
1681
+
1682
+ ===Docgenerator::Sectioning::Paragraph#to_creole
1683
+
1684
+ =====content
1685
+
1686
+
1687
+ ====:cr, :cR, :Cr, :CR for Docgenerator::Sectioning::Paragraph#.to_creole
1688
+ <<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
1689
+
1690
+ Default:
1691
+ <<START>>
1692
+ =====content
1693
+ <<END>>
1694
+
1695
+ * Result after Docgenerator::Sectioning::Paragraph#cr:
1696
+
1697
+ <<START>>
1698
+ =====content
1699
+
1700
+ <<END>>
1701
+
1702
+ * Result after Docgenerator::Sectioning::Paragraph#cR:
1703
+
1704
+ <<START>>
1705
+ =====content
1706
+
1707
+ <<END>>
1708
+
1709
+ * Result after Docgenerator::Sectioning::Paragraph#Cr:
1710
+
1711
+ <<START>>
1712
+
1713
+ =====content
1714
+
1715
+ <<END>>
1716
+
1717
+ * Result after Docgenerator::Sectioning::Paragraph#CR:
1718
+
1719
+ <<START>>
1720
+
1721
+ =====content
1722
+
1723
+ <<END>>
1724
+
1725
+ =end
1726
+ class Paragraph << Docgenerator::Sectioning::DummySectioning
1727
+ #This coding is empty - this is the manpage definition, not the implementation
1728
+ end #class Paragraph
1729
+ end #module Sectioning
1730
+ end #module Docgenerator
1731
+ module Docgenerator
1732
+ module Sectioning
1733
+ =begin rdoc
1734
+ =Docgenerator::Sectioning::Subparagraph
1735
+
1736
+ ==Attributes
1737
+ Attribute required? HTML LaTeX ~keyval ConTeXt Text Wiki Creole Values
1738
+ ====================================================================================================
1739
+ lang : - X - - - - - -
1740
+ id : - X - - - - - -
1741
+ class : - X - - - - - -
1742
+ style : - X - - - - - -
1743
+ title : - X - - - - - -
1744
+ dir : - X - - - - - -
1745
+ onclick : - X - - - - - -
1746
+ ondblclick : - X - - - - - -
1747
+ onmousedown : - X - - - - - -
1748
+ onmouseup : - X - - - - - -
1749
+ onmouseover : - X - - - - - -
1750
+ onmousemove : - X - - - - - -
1751
+ onmouseout : - X - - - - - -
1752
+ onkeypress : - X - - - - - -
1753
+ onkeyup : - X - - - - - -
1754
+ onkeydown : - X - - - - - -
1755
+ short : - - X - - - - -
1756
+
1757
+
1758
+ Docgenerator::Sectioning::Subparagraph can contain content.
1759
+
1760
+ ==Generate an object
1761
+ test = Docgenerator::Sectioning::Subparagraph.new( {
1762
+ #:lang => <<value>>, % optional, values: ["en", "de"]
1763
+ #:id => <<value>>, % optional
1764
+ #:class => <<value>>, % optional
1765
+ #:style => <<value>>, % optional, values: [Docgenerator::CSS, String]
1766
+ #:title => <<value>>, % optional
1767
+ #:dir => <<value>>, % optional, values: ["ltr", "rtl"]
1768
+ #:onclick => <<value>>, % optional
1769
+ #:ondblclick => <<value>>, % optional
1770
+ #:onmousedown => <<value>>, % optional
1771
+ #:onmouseup => <<value>>, % optional
1772
+ #:onmouseover => <<value>>, % optional
1773
+ #:onmousemove => <<value>>, % optional
1774
+ #:onmouseout => <<value>>, % optional
1775
+ #:onkeypress => <<value>>, % optional
1776
+ #:onkeyup => <<value>>, % optional
1777
+ #:onkeydown => <<value>>, % optional
1778
+ #:short => <<value>>, % optional
1779
+ }, 'content')
1780
+
1781
+ Alternative generation
1782
+ test = element(:subparagraph, {...Attributes...}, 'content' )
1783
+ test = element(:h5, {...Attributes...}, 'content' )
1784
+
1785
+
1786
+ ==Outputs
1787
+ ===Docgenerator::Sectioning::Subparagraph#to_latex
1788
+ \subparagraph{content}
1789
+
1790
+ ====:cr, :cR, :Cr, :CR for Docgenerator::Sectioning::Subparagraph#.to_latex
1791
+ <<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
1792
+
1793
+ Default:
1794
+ <<START>>\subparagraph{content}<<END>>
1795
+
1796
+ * Result after Docgenerator::Sectioning::Subparagraph#cr:
1797
+
1798
+ <<START>>\subparagraph{content}
1799
+ <<END>>
1800
+
1801
+ * Result after Docgenerator::Sectioning::Subparagraph#cR:
1802
+
1803
+ <<START>>\subparagraph{content}
1804
+ <<END>>
1805
+
1806
+ * Result after Docgenerator::Sectioning::Subparagraph#Cr:
1807
+
1808
+ <<START>>
1809
+ \subparagraph{content}
1810
+ <<END>>
1811
+
1812
+ * Result after Docgenerator::Sectioning::Subparagraph#CR:
1813
+
1814
+ <<START>>
1815
+ \subparagraph{content}
1816
+ <<END>>
1817
+
1818
+ ===Docgenerator::Sectioning::Subparagraph#to_html
1819
+ <h5 >content</h5>
1820
+
1821
+ ====:cr, :cR, :Cr, :CR for Docgenerator::Sectioning::Subparagraph#.to_html
1822
+ <<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
1823
+
1824
+ Default:
1825
+ <<START>><h5 >content</h5><<END>>
1826
+
1827
+ * Result after Docgenerator::Sectioning::Subparagraph#cr:
1828
+
1829
+ <<START>><h5 >content</h5>
1830
+ <<END>>
1831
+
1832
+ * Result after Docgenerator::Sectioning::Subparagraph#cR:
1833
+
1834
+ <<START>><h5 >
1835
+ content
1836
+ </h5>
1837
+ <<END>>
1838
+
1839
+ * Result after Docgenerator::Sectioning::Subparagraph#Cr:
1840
+
1841
+ <<START>>
1842
+ <h5 >
1843
+ content
1844
+ </h5>
1845
+ <<END>>
1846
+
1847
+ * Result after Docgenerator::Sectioning::Subparagraph#CR:
1848
+
1849
+ <<START>>
1850
+ <h5 >
1851
+ content
1852
+ </h5>
1853
+ <<END>>
1854
+
1855
+ ===Docgenerator::Sectioning::Subparagraph#to_context
1856
+ \subparagraph{content}
1857
+
1858
+ ====:cr, :cR, :Cr, :CR for Docgenerator::Sectioning::Subparagraph#.to_context
1859
+ <<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
1860
+
1861
+ Default:
1862
+ <<START>>\subparagraph{content}<<END>>
1863
+
1864
+ * Result after Docgenerator::Sectioning::Subparagraph#cr:
1865
+
1866
+ <<START>>\subparagraph{content}
1867
+ <<END>>
1868
+
1869
+ * Result after Docgenerator::Sectioning::Subparagraph#cR:
1870
+
1871
+ <<START>>\subparagraph{content}
1872
+ <<END>>
1873
+
1874
+ * Result after Docgenerator::Sectioning::Subparagraph#Cr:
1875
+
1876
+ <<START>>
1877
+ \subparagraph{content}
1878
+ <<END>>
1879
+
1880
+ * Result after Docgenerator::Sectioning::Subparagraph#CR:
1881
+
1882
+ <<START>>
1883
+ \subparagraph{content}
1884
+ <<END>>
1885
+
1886
+ ===Docgenerator::Sectioning::Subparagraph#to_text
1887
+
1888
+ content
1889
+ ------------------------------
1890
+
1891
+
1892
+ ====:cr, :cR, :Cr, :CR for Docgenerator::Sectioning::Subparagraph#.to_text
1893
+ <<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
1894
+
1895
+ Default:
1896
+ <<START>>
1897
+ content
1898
+ ------------------------------
1899
+ <<END>>
1900
+
1901
+ * Result after Docgenerator::Sectioning::Subparagraph#cr:
1902
+
1903
+ <<START>>
1904
+ content
1905
+ ------------------------------
1906
+
1907
+ <<END>>
1908
+
1909
+ * Result after Docgenerator::Sectioning::Subparagraph#cR:
1910
+
1911
+ <<START>>
1912
+ content
1913
+ ------------------------------
1914
+
1915
+ <<END>>
1916
+
1917
+ * Result after Docgenerator::Sectioning::Subparagraph#Cr:
1918
+
1919
+ <<START>>
1920
+
1921
+ content
1922
+ ------------------------------
1923
+
1924
+ <<END>>
1925
+
1926
+ * Result after Docgenerator::Sectioning::Subparagraph#CR:
1927
+
1928
+ <<START>>
1929
+
1930
+ content
1931
+ ------------------------------
1932
+
1933
+ <<END>>
1934
+
1935
+ ===Docgenerator::Sectioning::Subparagraph#to_wiki
1936
+
1937
+ ======content======
1938
+
1939
+
1940
+ ====:cr, :cR, :Cr, :CR for Docgenerator::Sectioning::Subparagraph#.to_wiki
1941
+ <<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
1942
+
1943
+ Default:
1944
+ <<START>>
1945
+ ======content======
1946
+ <<END>>
1947
+
1948
+ * Result after Docgenerator::Sectioning::Subparagraph#cr:
1949
+
1950
+ <<START>>
1951
+ ======content======
1952
+
1953
+ <<END>>
1954
+
1955
+ * Result after Docgenerator::Sectioning::Subparagraph#cR:
1956
+
1957
+ <<START>>
1958
+ ======content======
1959
+
1960
+ <<END>>
1961
+
1962
+ * Result after Docgenerator::Sectioning::Subparagraph#Cr:
1963
+
1964
+ <<START>>
1965
+
1966
+ ======content======
1967
+
1968
+ <<END>>
1969
+
1970
+ * Result after Docgenerator::Sectioning::Subparagraph#CR:
1971
+
1972
+ <<START>>
1973
+
1974
+ ======content======
1975
+
1976
+ <<END>>
1977
+
1978
+ ===Docgenerator::Sectioning::Subparagraph#to_creole
1979
+
1980
+ ======content
1981
+
1982
+
1983
+ ====:cr, :cR, :Cr, :CR for Docgenerator::Sectioning::Subparagraph#.to_creole
1984
+ <<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
1985
+
1986
+ Default:
1987
+ <<START>>
1988
+ ======content
1989
+ <<END>>
1990
+
1991
+ * Result after Docgenerator::Sectioning::Subparagraph#cr:
1992
+
1993
+ <<START>>
1994
+ ======content
1995
+
1996
+ <<END>>
1997
+
1998
+ * Result after Docgenerator::Sectioning::Subparagraph#cR:
1999
+
2000
+ <<START>>
2001
+ ======content
2002
+
2003
+ <<END>>
2004
+
2005
+ * Result after Docgenerator::Sectioning::Subparagraph#Cr:
2006
+
2007
+ <<START>>
2008
+
2009
+ ======content
2010
+
2011
+ <<END>>
2012
+
2013
+ * Result after Docgenerator::Sectioning::Subparagraph#CR:
2014
+
2015
+ <<START>>
2016
+
2017
+ ======content
2018
+
2019
+ <<END>>
2020
+
2021
+ =end
2022
+ class Subparagraph << Docgenerator::Sectioning::DummySectioning
2023
+ #This coding is empty - this is the manpage definition, not the implementation
2024
+ end #class Subparagraph
2025
+ end #module Sectioning
2026
+ end #module Docgenerator
2027
+ module Docgenerator
2028
+ module Sectioning
2029
+ =begin rdoc
2030
+ =Docgenerator::Sectioning::Minisec
2031
+
2032
+ ==Attributes
2033
+ Attribute required? HTML LaTeX ~keyval ConTeXt Text Wiki Creole Values
2034
+ ====================================================================================================
2035
+ lang : - X - - - - - -
2036
+ id : - X - - - - - -
2037
+ class : - X - - - - - -
2038
+ style : - X - - - - - -
2039
+ title : - X - - - - - -
2040
+ dir : - X - - - - - -
2041
+ onclick : - X - - - - - -
2042
+ ondblclick : - X - - - - - -
2043
+ onmousedown : - X - - - - - -
2044
+ onmouseup : - X - - - - - -
2045
+ onmouseover : - X - - - - - -
2046
+ onmousemove : - X - - - - - -
2047
+ onmouseout : - X - - - - - -
2048
+ onkeypress : - X - - - - - -
2049
+ onkeyup : - X - - - - - -
2050
+ onkeydown : - X - - - - - -
2051
+ short : - - X - - - - -
2052
+
2053
+
2054
+ Docgenerator::Sectioning::Minisec can contain content.
2055
+
2056
+ ==Generate an object
2057
+ test = Docgenerator::Sectioning::Minisec.new( {
2058
+ #:lang => <<value>>, % optional, values: ["en", "de"]
2059
+ #:id => <<value>>, % optional
2060
+ #:class => <<value>>, % optional
2061
+ #:style => <<value>>, % optional, values: [Docgenerator::CSS, String]
2062
+ #:title => <<value>>, % optional
2063
+ #:dir => <<value>>, % optional, values: ["ltr", "rtl"]
2064
+ #:onclick => <<value>>, % optional
2065
+ #:ondblclick => <<value>>, % optional
2066
+ #:onmousedown => <<value>>, % optional
2067
+ #:onmouseup => <<value>>, % optional
2068
+ #:onmouseover => <<value>>, % optional
2069
+ #:onmousemove => <<value>>, % optional
2070
+ #:onmouseout => <<value>>, % optional
2071
+ #:onkeypress => <<value>>, % optional
2072
+ #:onkeyup => <<value>>, % optional
2073
+ #:onkeydown => <<value>>, % optional
2074
+ #:short => <<value>>, % optional
2075
+ }, 'content')
2076
+
2077
+ Alternative generation
2078
+ test = element(:minisec, {...Attributes...}, 'content' )
2079
+ test = element(:h6, {...Attributes...}, 'content' )
2080
+
2081
+
2082
+ ==Outputs
2083
+ ===Docgenerator::Sectioning::Minisec#to_latex
2084
+ \minisec{content}
2085
+
2086
+ ====:cr, :cR, :Cr, :CR for Docgenerator::Sectioning::Minisec#.to_latex
2087
+ <<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
2088
+
2089
+ Default:
2090
+ <<START>>\minisec{content}<<END>>
2091
+
2092
+ * Result after Docgenerator::Sectioning::Minisec#cr:
2093
+
2094
+ <<START>>\minisec{content}
2095
+ <<END>>
2096
+
2097
+ * Result after Docgenerator::Sectioning::Minisec#cR:
2098
+
2099
+ <<START>>\minisec{content}
2100
+ <<END>>
2101
+
2102
+ * Result after Docgenerator::Sectioning::Minisec#Cr:
2103
+
2104
+ <<START>>
2105
+ \minisec{content}
2106
+ <<END>>
2107
+
2108
+ * Result after Docgenerator::Sectioning::Minisec#CR:
2109
+
2110
+ <<START>>
2111
+ \minisec{content}
2112
+ <<END>>
2113
+
2114
+ ===Docgenerator::Sectioning::Minisec#to_html
2115
+ <h6 >content</h6>
2116
+
2117
+ ====:cr, :cR, :Cr, :CR for Docgenerator::Sectioning::Minisec#.to_html
2118
+ <<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
2119
+
2120
+ Default:
2121
+ <<START>><h6 >content</h6><<END>>
2122
+
2123
+ * Result after Docgenerator::Sectioning::Minisec#cr:
2124
+
2125
+ <<START>><h6 >content</h6>
2126
+ <<END>>
2127
+
2128
+ * Result after Docgenerator::Sectioning::Minisec#cR:
2129
+
2130
+ <<START>><h6 >
2131
+ content
2132
+ </h6>
2133
+ <<END>>
2134
+
2135
+ * Result after Docgenerator::Sectioning::Minisec#Cr:
2136
+
2137
+ <<START>>
2138
+ <h6 >
2139
+ content
2140
+ </h6>
2141
+ <<END>>
2142
+
2143
+ * Result after Docgenerator::Sectioning::Minisec#CR:
2144
+
2145
+ <<START>>
2146
+ <h6 >
2147
+ content
2148
+ </h6>
2149
+ <<END>>
2150
+
2151
+ ===Docgenerator::Sectioning::Minisec#to_context
2152
+ \minisec{content}
2153
+
2154
+ ====:cr, :cR, :Cr, :CR for Docgenerator::Sectioning::Minisec#.to_context
2155
+ <<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
2156
+
2157
+ Default:
2158
+ <<START>>\minisec{content}<<END>>
2159
+
2160
+ * Result after Docgenerator::Sectioning::Minisec#cr:
2161
+
2162
+ <<START>>\minisec{content}
2163
+ <<END>>
2164
+
2165
+ * Result after Docgenerator::Sectioning::Minisec#cR:
2166
+
2167
+ <<START>>\minisec{content}
2168
+ <<END>>
2169
+
2170
+ * Result after Docgenerator::Sectioning::Minisec#Cr:
2171
+
2172
+ <<START>>
2173
+ \minisec{content}
2174
+ <<END>>
2175
+
2176
+ * Result after Docgenerator::Sectioning::Minisec#CR:
2177
+
2178
+ <<START>>
2179
+ \minisec{content}
2180
+ <<END>>
2181
+
2182
+ ===Docgenerator::Sectioning::Minisec#to_text
2183
+
2184
+ content
2185
+ ------------------------------
2186
+
2187
+
2188
+ ====:cr, :cR, :Cr, :CR for Docgenerator::Sectioning::Minisec#.to_text
2189
+ <<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
2190
+
2191
+ Default:
2192
+ <<START>>
2193
+ content
2194
+ ------------------------------
2195
+ <<END>>
2196
+
2197
+ * Result after Docgenerator::Sectioning::Minisec#cr:
2198
+
2199
+ <<START>>
2200
+ content
2201
+ ------------------------------
2202
+
2203
+ <<END>>
2204
+
2205
+ * Result after Docgenerator::Sectioning::Minisec#cR:
2206
+
2207
+ <<START>>
2208
+ content
2209
+ ------------------------------
2210
+
2211
+ <<END>>
2212
+
2213
+ * Result after Docgenerator::Sectioning::Minisec#Cr:
2214
+
2215
+ <<START>>
2216
+
2217
+ content
2218
+ ------------------------------
2219
+
2220
+ <<END>>
2221
+
2222
+ * Result after Docgenerator::Sectioning::Minisec#CR:
2223
+
2224
+ <<START>>
2225
+
2226
+ content
2227
+ ------------------------------
2228
+
2229
+ <<END>>
2230
+
2231
+ ===Docgenerator::Sectioning::Minisec#to_wiki
2232
+
2233
+ =======content=======
2234
+
2235
+
2236
+ ====:cr, :cR, :Cr, :CR for Docgenerator::Sectioning::Minisec#.to_wiki
2237
+ <<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
2238
+
2239
+ Default:
2240
+ <<START>>
2241
+ =======content=======
2242
+ <<END>>
2243
+
2244
+ * Result after Docgenerator::Sectioning::Minisec#cr:
2245
+
2246
+ <<START>>
2247
+ =======content=======
2248
+
2249
+ <<END>>
2250
+
2251
+ * Result after Docgenerator::Sectioning::Minisec#cR:
2252
+
2253
+ <<START>>
2254
+ =======content=======
2255
+
2256
+ <<END>>
2257
+
2258
+ * Result after Docgenerator::Sectioning::Minisec#Cr:
2259
+
2260
+ <<START>>
2261
+
2262
+ =======content=======
2263
+
2264
+ <<END>>
2265
+
2266
+ * Result after Docgenerator::Sectioning::Minisec#CR:
2267
+
2268
+ <<START>>
2269
+
2270
+ =======content=======
2271
+
2272
+ <<END>>
2273
+
2274
+ ===Docgenerator::Sectioning::Minisec#to_creole
2275
+
2276
+ =======content
2277
+
2278
+
2279
+ ====:cr, :cR, :Cr, :CR for Docgenerator::Sectioning::Minisec#.to_creole
2280
+ <<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
2281
+
2282
+ Default:
2283
+ <<START>>
2284
+ =======content
2285
+ <<END>>
2286
+
2287
+ * Result after Docgenerator::Sectioning::Minisec#cr:
2288
+
2289
+ <<START>>
2290
+ =======content
2291
+
2292
+ <<END>>
2293
+
2294
+ * Result after Docgenerator::Sectioning::Minisec#cR:
2295
+
2296
+ <<START>>
2297
+ =======content
2298
+
2299
+ <<END>>
2300
+
2301
+ * Result after Docgenerator::Sectioning::Minisec#Cr:
2302
+
2303
+ <<START>>
2304
+
2305
+ =======content
2306
+
2307
+ <<END>>
2308
+
2309
+ * Result after Docgenerator::Sectioning::Minisec#CR:
2310
+
2311
+ <<START>>
2312
+
2313
+ =======content
2314
+
2315
+ <<END>>
2316
+
2317
+ =end
2318
+ class Minisec << Docgenerator::Sectioning::DummySectioning
2319
+ #This coding is empty - this is the manpage definition, not the implementation
2320
+ end #class Minisec
2321
+ end #module Sectioning
2322
+ end #module Docgenerator
2323
+ module Docgenerator
2324
+ module Sectioning
2325
+ =begin rdoc
2326
+ =Docgenerator::Sectioning::Addsec
2327
+
2328
+ ==Attributes
2329
+ Attribute required? HTML LaTeX ~keyval ConTeXt Text Wiki Creole Values
2330
+ ====================================================================================================
2331
+ lang : - X - - - - - -
2332
+ id : - X - - - - - -
2333
+ class : - X - - - - - -
2334
+ style : - X - - - - - -
2335
+ title : - X - - - - - -
2336
+ dir : - X - - - - - -
2337
+ onclick : - X - - - - - -
2338
+ ondblclick : - X - - - - - -
2339
+ onmousedown : - X - - - - - -
2340
+ onmouseup : - X - - - - - -
2341
+ onmouseover : - X - - - - - -
2342
+ onmousemove : - X - - - - - -
2343
+ onmouseout : - X - - - - - -
2344
+ onkeypress : - X - - - - - -
2345
+ onkeyup : - X - - - - - -
2346
+ onkeydown : - X - - - - - -
2347
+
2348
+
2349
+ Docgenerator::Sectioning::Addsec can contain content.
2350
+
2351
+ ==Generate an object
2352
+ test = Docgenerator::Sectioning::Addsec.new( {
2353
+ #:lang => <<value>>, % optional, values: ["en", "de"]
2354
+ #:id => <<value>>, % optional
2355
+ #:class => <<value>>, % optional
2356
+ #:style => <<value>>, % optional, values: [Docgenerator::CSS, String]
2357
+ #:title => <<value>>, % optional
2358
+ #:dir => <<value>>, % optional, values: ["ltr", "rtl"]
2359
+ #:onclick => <<value>>, % optional
2360
+ #:ondblclick => <<value>>, % optional
2361
+ #:onmousedown => <<value>>, % optional
2362
+ #:onmouseup => <<value>>, % optional
2363
+ #:onmouseover => <<value>>, % optional
2364
+ #:onmousemove => <<value>>, % optional
2365
+ #:onmouseout => <<value>>, % optional
2366
+ #:onkeypress => <<value>>, % optional
2367
+ #:onkeyup => <<value>>, % optional
2368
+ #:onkeydown => <<value>>, % optional
2369
+ }, 'content')
2370
+
2371
+ Alternative generation
2372
+ test = element(:addsec, {...Attributes...}, 'content' )
2373
+
2374
+
2375
+ ==Outputs
2376
+ ===Docgenerator::Sectioning::Addsec#to_latex
2377
+ \addsec{content}
2378
+
2379
+ ====:cr, :cR, :Cr, :CR for Docgenerator::Sectioning::Addsec#.to_latex
2380
+ <<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
2381
+
2382
+ Default:
2383
+ <<START>>\addsec{content}<<END>>
2384
+
2385
+ * Result after Docgenerator::Sectioning::Addsec#cr:
2386
+
2387
+ <<START>>\addsec{content}
2388
+ <<END>>
2389
+
2390
+ * Result after Docgenerator::Sectioning::Addsec#cR:
2391
+
2392
+ <<START>>\addsec{content}
2393
+ <<END>>
2394
+
2395
+ * Result after Docgenerator::Sectioning::Addsec#Cr:
2396
+
2397
+ <<START>>
2398
+ \addsec{content}
2399
+ <<END>>
2400
+
2401
+ * Result after Docgenerator::Sectioning::Addsec#CR:
2402
+
2403
+ <<START>>
2404
+ \addsec{content}
2405
+ <<END>>
2406
+
2407
+ ===Docgenerator::Sectioning::Addsec#to_html
2408
+ <h2 >content</h2>
2409
+
2410
+ ====:cr, :cR, :Cr, :CR for Docgenerator::Sectioning::Addsec#.to_html
2411
+ <<START>> and <<END>> are not part of the output, but needed to illustrate the line breaks.
2412
+
2413
+ Default:
2414
+ <<START>><h2 >content</h2><<END>>
2415
+
2416
+ * Result after Docgenerator::Sectioning::Addsec#cr:
2417
+
2418
+ <<START>><h2 >content</h2>
2419
+ <<END>>
2420
+
2421
+ * Result after Docgenerator::Sectioning::Addsec#cR:
2422
+
2423
+ <<START>><h2 >
2424
+ content
2425
+ </h2>
2426
+ <<END>>
2427
+
2428
+ * Result after Docgenerator::Sectioning::Addsec#Cr:
2429
+
2430
+ <<START>>
2431
+ <h2 >
2432
+ content
2433
+ </h2>
2434
+ <<END>>
2435
+
2436
+ * Result after Docgenerator::Sectioning::Addsec#CR:
2437
+
2438
+ <<START>>
2439
+ <h2 >
2440
+ content
2441
+ </h2>
2442
+ <<END>>
2443
+
2444
+ ===Docgenerator::Sectioning::Addsec#to_context
2445
+ \addsec{content}
2446
+
2447
+ * No output routine defined for context - use a dummy
2448
+ ===Docgenerator::Sectioning::Addsec#to_text
2449
+ content
2450
+
2451
+ * No output routine defined for text - use a dummy
2452
+ ===Docgenerator::Sectioning::Addsec#to_wiki
2453
+ content
2454
+
2455
+
2456
+ * No output routine defined for wiki - use a dummy
2457
+ ===Docgenerator::Sectioning::Addsec#to_creole
2458
+ content
2459
+
2460
+
2461
+ * No output routine defined for creole - use a dummy
2462
+ =end
2463
+ class Addsec << Docgenerator::Element
2464
+ #This coding is empty - this is the manpage definition, not the implementation
2465
+ end #class Addsec
2466
+ end #module Sectioning
2467
+ end #module Docgenerator