Class: Asciidoctor::Converter::DocBook5Converter
- Inherits:
-
Base
- Object
- Base
- Asciidoctor::Converter::DocBook5Converter
show all
- Defined in:
- lib/asciidoctor/converter/docbook5.rb
Overview
by the docbook45 backend from AsciiDoc Python, except it has been migrated to the DocBook 5 specification.
Constant Summary
collapse
- MANPAGE_SECTION_TAGS =
{ 'section' => 'refsection', 'synopsis' => 'refsynopsisdiv' }
- TABLE_PI_NAMES =
['dbhtml', 'dbfo', 'dblatex']
- CopyrightRx =
/^(#{CC_ANY}+?)(?: ((?:\d{4}\-)?\d{4}))?$/
- ImageMacroRx =
/^image::?(\S|\S#{CC_ANY}*?\S)\[(#{CC_ANY}+)?\]$/
Asciidoctor::Converter::DefaultFactory::PROVIDED
Instance Attribute Summary
#backend
Instance Method Summary
collapse
Methods inherited from Base
#content_only, #convert, #handles?, #skip
#convert, derive_backend_traits, #handles?
#for, #register, #unregister_all
Methods included from Factory
#converters, #create, create, default, #for, new, #register
Methods included from Logging
#logger, #message_with_context
Constructor Details
Returns a new instance of DocBook5Converter.
31
32
33
34
|
# File 'lib/asciidoctor/converter/docbook5.rb', line 31
def initialize backend, opts = {}
@backend = backend
init_backend_traits basebackend: 'docbook', filetype: 'xml', outfilesuffix: '.xml', supports_templates: true
end
|
Instance Method Details
#convert_admonition(node) ⇒ Object
71
72
73
74
75
|
# File 'lib/asciidoctor/converter/docbook5.rb', line 71
def convert_admonition node
%(<#{tag_name = node.attr 'name'}#{common_attributes node.id, node.role, node.reftext}>
#{title_tag node}#{enclose_content node}
</#{tag_name}>)
end
|
#convert_colist(node) ⇒ Object
79
80
81
82
83
84
85
86
87
88
89
90
91
|
# File 'lib/asciidoctor/converter/docbook5.rb', line 79
def convert_colist node
result = []
result << %(<calloutlist#{common_attributes node.id, node.role, node.reftext}>)
result << %(<title>#{node.title}</title>) if node.title?
node.items.each do |item|
result << %(<callout arearefs="#{item.attr 'coids'}">)
result << %(<para>#{item.text}</para>)
result << item.content if item.blocks?
result << '</callout>'
end
result << %(</calloutlist>)
result.join LF
end
|
#convert_dlist(node) ⇒ Object
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
|
# File 'lib/asciidoctor/converter/docbook5.rb', line 93
def convert_dlist node
result = []
if node.style == 'horizontal'
result << %(<#{tag_name = node.title? ? 'table' : 'informaltable'}#{common_attributes node.id, node.role, node.reftext} tabstyle="horizontal" frame="none" colsep="0" rowsep="0">
#{title_tag node}<tgroup cols="2">
<colspec colwidth="#{node.attr 'labelwidth', 15}*"/>
<colspec colwidth="#{node.attr 'itemwidth', 85}*"/>
<tbody valign="top">)
node.items.each do |terms, dd|
result << %(<row>
<entry>)
terms.each {|dt| result << %(<simpara>#{dt.text}</simpara>) }
result << %(</entry>
<entry>)
if dd
result << %(<simpara>#{dd.text}</simpara>) if dd.text?
result << dd.content if dd.blocks?
end
result << %(</entry>
</row>)
end
result << %(</tbody>
</tgroup>
</#{tag_name}>)
else
tags = DLIST_TAGS[node.style]
list_tag = tags[:list]
entry_tag = tags[:entry]
label_tag = tags[:label]
term_tag = tags[:term]
item_tag = tags[:item]
if list_tag
result << %(<#{list_tag}#{common_attributes node.id, node.role, node.reftext}>)
result << %(<title>#{node.title}</title>) if node.title?
end
node.items.each do |terms, dd|
result << %(<#{entry_tag}>)
result << %(<#{label_tag}>) if label_tag
terms.each {|dt| result << %(<#{term_tag}>#{dt.text}</#{term_tag}>) }
result << %(</#{label_tag}>) if label_tag
result << %(<#{item_tag}>)
if dd
result << %(<simpara>#{dd.text}</simpara>) if dd.text?
result << dd.content if dd.blocks?
end
result << %(</#{item_tag}>)
result << %(</#{entry_tag}>)
end
result << %(</#{list_tag}>) if list_tag
end
result.join LF
end
|
#convert_document(node) ⇒ Object
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
# File 'lib/asciidoctor/converter/docbook5.rb', line 36
def convert_document node
result = ['<?xml version="1.0" encoding="UTF-8"?>']
result << ((node.attr? 'toclevels') ? %(<?asciidoc-toc maxdepth="#{node.attr 'toclevels'}"?>) : '<?asciidoc-toc?>') if node.attr? 'toc'
result << ((node.attr? 'sectnumlevels') ? %(<?asciidoc-numbered maxdepth="#{node.attr 'sectnumlevels'}"?>) : '<?asciidoc-numbered?>') if node.attr? 'sectnums'
lang_attribute = (node.attr? 'nolang') ? '' : %( xml:lang="#{node.attr 'lang', 'en'}")
if (root_tag_name = node.doctype) == 'manpage'
root_tag_name = 'refentry'
end
result << %(<#{root_tag_name} xmlns="http://docbook.org/ns/docbook" xmlns:xl="http://www.w3.org/1999/xlink" version="5.0"#{lang_attribute}#{common_attributes node.id}>)
result << (document_info_tag node) unless node.
unless (docinfo_content = node.docinfo :header).empty?
result << docinfo_content
end
result << node.content if node.blocks?
unless (docinfo_content = node.docinfo :footer).empty?
result << docinfo_content
end
result << %(</#{root_tag_name}>)
result.join LF
end
|
#convert_example(node) ⇒ Object
149
150
151
152
153
154
155
156
157
158
159
160
|
# File 'lib/asciidoctor/converter/docbook5.rb', line 149
def convert_example node
if node.title?
%(<example#{common_attributes node.id, node.role, node.reftext}>
<title>#{node.title}</title>
#{enclose_content node}
</example>)
else
%(<informalexample#{common_attributes node.id, node.role, node.reftext}>
#{enclose_content node}
</informalexample>)
end
end
|
#convert_floating_title(node) ⇒ Object
162
163
164
|
# File 'lib/asciidoctor/converter/docbook5.rb', line 162
def convert_floating_title node
%(<bridgehead#{common_attributes node.id, node.role, node.reftext} renderas="sect#{node.level}">#{node.title}</bridgehead>)
end
|
#convert_image(node) ⇒ Object
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
|
# File 'lib/asciidoctor/converter/docbook5.rb', line 166
def convert_image node
if node.attr? 'scaledwidth'
width_attribute = %( width="#{node.attr 'scaledwidth'}")
depth_attribute = ''
scale_attribute = ''
elsif node.attr? 'scale'
scale_attribute = %( scale="#{node.attr 'scale'}")
else
width_attribute = (node.attr? 'width') ? %( contentwidth="#{node.attr 'width'}") : ''
depth_attribute = (node.attr? 'height') ? %( contentdepth="#{node.attr 'height'}") : ''
scale_attribute = ''
end
align_attribute = (node.attr? 'align') ? %( align="#{node.attr 'align'}") : ''
mediaobject = %(<mediaobject>
<imageobject>
<imagedata fileref="#{node.image_uri(node.attr 'target')}"#{width_attribute}#{depth_attribute}#{scale_attribute}#{align_attribute}/>
</imageobject>
<textobject><phrase>#{node.alt}</phrase></textobject>
</mediaobject>)
if node.title?
%(<figure#{common_attributes node.id, node.role, node.reftext}>
<title>#{node.title}</title>
#{mediaobject}
</figure>)
else
%(<informalfigure#{common_attributes node.id, node.role, node.reftext}>
#{mediaobject}
</informalfigure>)
end
end
|
#convert_inline_anchor(node) ⇒ Object
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
|
# File 'lib/asciidoctor/converter/docbook5.rb', line 475
def convert_inline_anchor node
case node.type
when :ref
%(<anchor#{common_attributes((id = node.id), nil, node.reftext || %([#{id}]))}/>)
when :xref
if (path = node.attributes['path'])
%(<link xl:href="#{node.target}">#{node.text || path}</link>)
else
linkend = node.attributes['fragment'] || node.target
(text = node.text) ? %(<link linkend="#{linkend}">#{text}</link>) : %(<xref linkend="#{linkend}"/>)
end
when :link
%(<link xl:href="#{node.target}">#{node.text}</link>)
when :bibref
%(<anchor#{common_attributes node.id, nil, "[#{node.reftext || node.id}]"}/>#{text})
else
logger.warn %(unknown anchor type: #{node.type.inspect})
nil
end
end
|
#convert_inline_break(node) ⇒ Object
497
498
499
|
# File 'lib/asciidoctor/converter/docbook5.rb', line 497
def convert_inline_break node
%(#{node.text}<?asciidoc-br?>)
end
|
501
502
503
|
# File 'lib/asciidoctor/converter/docbook5.rb', line 501
def convert_inline_button node
%(<guibutton>#{node.text}</guibutton>)
end
|
#convert_inline_callout(node) ⇒ Object
505
506
507
|
# File 'lib/asciidoctor/converter/docbook5.rb', line 505
def convert_inline_callout node
%(<co#{common_attributes node.id}/>)
end
|
509
510
511
512
513
514
515
|
# File 'lib/asciidoctor/converter/docbook5.rb', line 509
def node
if node.type == :xref
%(<footnoteref linkend="#{node.target}"/>)
else
%(<footnote#{common_attributes node.id}><simpara>#{node.text}</simpara></footnote>)
end
end
|
#convert_inline_image(node) ⇒ Object
517
518
519
520
521
522
523
524
525
526
|
# File 'lib/asciidoctor/converter/docbook5.rb', line 517
def convert_inline_image node
width_attribute = (node.attr? 'width') ? %( contentwidth="#{node.attr 'width'}") : ''
depth_attribute = (node.attr? 'height') ? %( contentdepth="#{node.attr 'height'}") : ''
%(<inlinemediaobject>
<imageobject>
<imagedata fileref="#{node.type == 'icon' ? (node.icon_uri node.target) : (node.image_uri node.target)}"#{width_attribute}#{depth_attribute}/>
</imageobject>
<textobject><phrase>#{node.alt}</phrase></textobject>
</inlinemediaobject>)
end
|
#convert_inline_indexterm(node) ⇒ Object
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
|
# File 'lib/asciidoctor/converter/docbook5.rb', line 528
def convert_inline_indexterm node
if (see = node.attr 'see')
rel = %(\n<see>#{see}</see>)
elsif (see_also_list = node.attr 'see-also')
rel = see_also_list.map {|see_also| %(\n<seealso>#{see_also}</seealso>) }.join
else
rel = ''
end
if node.type == :visible
%(<indexterm>
<primary>#{node.text}</primary>#{rel}
</indexterm>#{node.text})
else
if (numterms = (terms = node.attr 'terms').size) > 2
%(<indexterm>
<primary>#{terms[0]}</primary><secondary>#{terms[1]}</secondary><tertiary>#{terms[2]}</tertiary>#{rel}
</indexterm>#{(node.document.option? 'indexterm-promotion') ? %[
<indexterm>
<primary>#{terms[1]}</primary><secondary>#{terms[2]}</secondary>
</indexterm>
<indexterm>
<primary>#{terms[2]}</primary>
</indexterm>] : ''})
elsif numterms > 1
%(<indexterm>
<primary>#{terms[0]}</primary><secondary>#{terms[1]}</secondary>#{rel}
</indexterm>#{(node.document.option? 'indexterm-promotion') ? %[
<indexterm>
<primary>#{terms[1]}</primary>
</indexterm>] : ''})
else
%(<indexterm>
<primary>#{terms[0]}</primary>#{rel}
</indexterm>)
end
end
end
|
#convert_inline_kbd(node) ⇒ Object
566
567
568
569
570
571
572
|
# File 'lib/asciidoctor/converter/docbook5.rb', line 566
def convert_inline_kbd node
if (keys = node.attr 'keys').size == 1
%(<keycap>#{keys[0]}</keycap>)
else
%(<keycombo><keycap>#{keys.join '</keycap><keycap>'}</keycap></keycombo>)
end
end
|
574
575
576
577
578
579
580
581
582
583
584
585
|
# File 'lib/asciidoctor/converter/docbook5.rb', line 574
def node
= node.attr 'menu'
if ( = node.attr 'submenus').empty?
if ( = node.attr 'menuitem')
%(<menuchoice><guimenu>#{}</guimenu> <guimenuitem>#{}</guimenuitem></menuchoice>)
else
%(<guimenu>#{}</guimenu>)
end
else
%(<menuchoice><guimenu>#{}</guimenu> <guisubmenu>#{.join '</guisubmenu> <guisubmenu>'}</guisubmenu> <guimenuitem>#{node.attr 'menuitem'}</guimenuitem></menuchoice>)
end
end
|
#convert_inline_quoted(node) ⇒ Object
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
|
# File 'lib/asciidoctor/converter/docbook5.rb', line 587
def convert_inline_quoted node
if (type = node.type) == :asciimath
asciimath_available? ? %(<inlineequation>#{(::AsciiMath.parse node.text).to_mathml 'mml:', 'xmlns:mml' => 'http://www.w3.org/1998/Math/MathML'}</inlineequation>) : %(<inlineequation><mathphrase><![CDATA[#{node.text}]]></mathphrase></inlineequation>)
elsif type == :latexmath
%(<inlineequation><alt><![CDATA[#{equation = node.text}]]></alt><mathphrase><![CDATA[#{equation}]]></mathphrase></inlineequation>)
else
open, close, supports_phrase = QUOTE_TAGS[type]
text = node.text
if node.role
if supports_phrase
quoted_text = %(#{open}<phrase role="#{node.role}">#{text}</phrase>#{close})
else
quoted_text = %(#{open.chop} role="#{node.role}">#{text}#{close})
end
else
quoted_text = %(#{open}#{text}#{close})
end
node.id ? %(<anchor#{common_attributes node.id, nil, text}/>#{quoted_text}) : quoted_text
end
end
|
#convert_listing(node) ⇒ Object
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
|
# File 'lib/asciidoctor/converter/docbook5.rb', line 204
def convert_listing node
informal = !node.title?
common_attrs = common_attributes node.id, node.role, node.reftext
if node.style == 'source'
if (attrs = node.attributes).key? 'linenums'
numbering_attrs = (attrs.key? 'start') ? %( linenumbering="numbered" startinglinenumber="#{attrs['start'].to_i}") : ' linenumbering="numbered"'
else
numbering_attrs = ' linenumbering="unnumbered"'
end
if attrs.key? 'language'
wrapped_content = %(<programlisting#{informal ? common_attrs : ''} language="#{attrs['language']}"#{numbering_attrs}>#{node.content}</programlisting>)
else
wrapped_content = %(<screen#{informal ? common_attrs : ''}#{numbering_attrs}>#{node.content}</screen>)
end
else
wrapped_content = %(<screen#{informal ? common_attrs : ''}>#{node.content}</screen>)
end
informal ? wrapped_content : %(<formalpara#{common_attrs}>
<title>#{node.title}</title>
<para>
#{wrapped_content}
</para>
</formalpara>)
end
|
#convert_literal(node) ⇒ Object
229
230
231
232
233
234
235
236
237
238
239
240
|
# File 'lib/asciidoctor/converter/docbook5.rb', line 229
def convert_literal node
if node.title?
%(<formalpara#{common_attributes node.id, node.role, node.reftext}>
<title>#{node.title}</title>
<para>
<literallayout class="monospaced">#{node.content}</literallayout>
</para>
</formalpara>)
else
%(<literallayout#{common_attributes node.id, node.role, node.reftext} class="monospaced">#{node.content}</literallayout>)
end
end
|
#convert_olist(node) ⇒ Object
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
|
# File 'lib/asciidoctor/converter/docbook5.rb', line 273
def convert_olist node
result = []
num_attribute = node.style ? %( numeration="#{node.style}") : ''
start_attribute = (node.attr? 'start') ? %( startingnumber="#{node.attr 'start'}") : ''
result << %(<orderedlist#{common_attributes node.id, node.role, node.reftext}#{num_attribute}#{start_attribute}>)
result << %(<title>#{node.title}</title>) if node.title?
node.items.each do |item|
result << %(<listitem#{common_attributes item.id, item.role}>)
result << %(<simpara>#{item.text}</simpara>)
result << item.content if item.blocks?
result << '</listitem>'
end
result << %(</orderedlist>)
result.join LF
end
|
#convert_open(node) ⇒ Object
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
|
# File 'lib/asciidoctor/converter/docbook5.rb', line 289
def convert_open node
case node.style
when 'abstract'
if node.parent == node.document && node.document.doctype == 'book'
logger.warn 'abstract block cannot be used in a document without a title when doctype is book. Excluding block content.'
''
else
%(<abstract>
#{title_tag node}#{enclose_content node}
</abstract>)
end
when 'partintro'
unless node.level == 0 && node.parent.context == :section && node.document.doctype == 'book'
logger.error 'partintro block can only be used when doctype is book and must be a child of a book part. Excluding block content.'
''
else
%(<partintro#{common_attributes node.id, node.role, node.reftext}>
#{title_tag node}#{enclose_content node}
</partintro>)
end
else
reftext = node.reftext if (id = node.id)
role = node.role
if node.title?
%(<formalpara#{common_attributes id, role, reftext}>
<title>#{node.title}</title>
<para>#{content_spacer = node.content_model == :compound ? LF : ''}#{node.content}#{content_spacer}</para>
</formalpara>)
elsif id || role
if node.content_model == :compound
%(<para#{common_attributes id, role, reftext}>
#{node.content}
</para>)
else
%(<simpara#{common_attributes id, role, reftext}>#{node.content}</simpara>)
end
else
enclose_content node
end
end
end
|
#convert_page_break(node) ⇒ Object
331
332
333
|
# File 'lib/asciidoctor/converter/docbook5.rb', line 331
def convert_page_break node
'<simpara><?asciidoc-pagebreak?></simpara>'
end
|
#convert_paragraph(node) ⇒ Object
335
336
337
338
339
340
341
342
343
344
|
# File 'lib/asciidoctor/converter/docbook5.rb', line 335
def convert_paragraph node
if node.title?
%(<formalpara#{common_attributes node.id, node.role, node.reftext}>
<title>#{node.title}</title>
<para>#{node.content}</para>
</formalpara>)
else
%(<simpara#{common_attributes node.id, node.role, node.reftext}>#{node.content}</simpara>)
end
end
|
#convert_preamble(node) ⇒ Object
346
347
348
349
350
351
352
353
354
|
# File 'lib/asciidoctor/converter/docbook5.rb', line 346
def convert_preamble node
if node.document.doctype == 'book'
%(<preface#{common_attributes node.id, node.role, node.reftext}>
#{title_tag node, false}#{node.content}
</preface>)
else
node.content
end
end
|
#convert_quote(node) ⇒ Object
356
357
358
|
# File 'lib/asciidoctor/converter/docbook5.rb', line 356
def convert_quote node
blockquote_tag(node, (node.has_role? 'epigraph') && 'epigraph') { enclose_content node }
end
|
#convert_section(node) ⇒ Object
59
60
61
62
63
64
65
66
67
68
69
|
# File 'lib/asciidoctor/converter/docbook5.rb', line 59
def convert_section node
if node.document.doctype == 'manpage'
tag_name = MANPAGE_SECTION_TAGS[tag_name = node.sectname] || tag_name
else
tag_name = node.sectname
end
title_el = node.special && (node.option? 'untitled') ? '' : %(<title>#{node.title}</title>\n)
%(<#{tag_name}#{common_attributes node.id, node.role, node.reftext}>
#{title_el}#{node.content}
</#{tag_name}>)
end
|
364
365
366
367
368
|
# File 'lib/asciidoctor/converter/docbook5.rb', line 364
def node
%(<sidebar#{common_attributes node.id, node.role, node.reftext}>
#{title_tag node}#{enclose_content node}
</sidebar>)
end
|
#convert_stem(node) ⇒ Object
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
|
# File 'lib/asciidoctor/converter/docbook5.rb', line 244
def convert_stem node
if (idx = node.subs.index :specialcharacters)
node.subs.delete_at idx
equation = node.content || ''
idx > 0 ? (node.subs.insert idx, :specialcharacters) : (node.subs.unshift :specialcharacters)
else
equation = node.content || ''
end
if node.style == 'asciimath'
equation_data = asciimath_available? ? ((::AsciiMath.parse equation).to_mathml 'mml:', 'xmlns:mml' => 'http://www.w3.org/1998/Math/MathML') : %(<mathphrase><![CDATA[#{equation}]]></mathphrase>)
else
equation_data = %(<alt><![CDATA[#{equation}]]></alt>
<mathphrase><![CDATA[#{equation}]]></mathphrase>)
end
if node.title?
%(<equation#{common_attributes node.id, node.role, node.reftext}>
<title>#{node.title}</title>
#{equation_data}
</equation>)
else
%(<informalequation#{common_attributes node.id, node.role, node.reftext}>
#{equation_data}
</informalequation>)
end
end
|
#convert_table(node) ⇒ Object
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
|
# File 'lib/asciidoctor/converter/docbook5.rb', line 370
def convert_table node
has_body = false
result = []
pgwide_attribute = (node.option? 'pgwide') ? ' pgwide="1"' : ''
if (frame = node.attr 'frame', 'all', 'table-frame') == 'ends'
frame = 'topbot'
end
grid = node.attr 'grid', nil, 'table-grid'
result << %(<#{tag_name = node.title? ? 'table' : 'informaltable'}#{common_attributes node.id, node.role, node.reftext}#{pgwide_attribute} frame="#{frame}" rowsep="#{['none', 'cols'].include?(grid) ? 0 : 1}" colsep="#{['none', 'rows'].include?(grid) ? 0 : 1}"#{(node.attr? 'orientation', 'landscape', 'table-orientation') ? ' orient="land"' : ''}>)
if (node.option? 'unbreakable')
result << '<?dbfo keep-together="always"?>'
elsif (node.option? 'breakable')
result << '<?dbfo keep-together="auto"?>'
end
result << %(<title>#{node.title}</title>) if tag_name == 'table'
col_width_key = if (width = (node.attr? 'width') ? (node.attr 'width') : nil)
TABLE_PI_NAMES.each do |pi_name|
result << %(<?#{pi_name} table-width="#{width}"?>)
end
'colabswidth'
else
'colpcwidth'
end
result << %(<tgroup cols="#{node.attr 'colcount'}">)
node.columns.each do |col|
result << %(<colspec colname="col_#{col.attr 'colnumber'}" colwidth="#{col.attr col_width_key}*"/>)
end
node.rows.to_h.each do |tsec, rows|
next if rows.empty?
has_body = true if tsec == :body
result << %(<t#{tsec}>)
rows.each do |row|
result << '<row>'
row.each do |cell|
halign_attribute = (cell.attr? 'halign') ? %( align="#{cell.attr 'halign'}") : ''
valign_attribute = (cell.attr? 'valign') ? %( valign="#{cell.attr 'valign'}") : ''
colspan_attribute = cell.colspan ? %( namest="col_#{colnum = cell.column.attr 'colnumber'}" nameend="col_#{colnum + cell.colspan - 1}") : ''
rowspan_attribute = cell.rowspan ? %( morerows="#{cell.rowspan - 1}") : ''
entry_start = %(<entry#{halign_attribute}#{valign_attribute}#{colspan_attribute}#{rowspan_attribute}>)
if tsec == :head
cell_content = cell.text
else
case cell.style
when :asciidoc
cell_content = cell.content
when :literal
cell_content = %(<literallayout class="monospaced">#{cell.text}</literallayout>)
when :header
cell_content = (cell_content = cell.content).empty? ? '' : %(<simpara><emphasis role="strong">#{cell_content.join '</emphasis></simpara><simpara><emphasis role="strong">'}</emphasis></simpara>)
else
cell_content = (cell_content = cell.content).empty? ? '' : %(<simpara>#{cell_content.join '</simpara><simpara>'}</simpara>)
end
end
entry_end = (node.document.attr? 'cellbgcolor') ? %(<?dbfo bgcolor="#{node.document.attr 'cellbgcolor'}"?></entry>) : '</entry>'
result << %(#{entry_start}#{cell_content}#{entry_end})
end
result << '</row>'
end
result << %(</t#{tsec}>)
end
result << '</tgroup>'
result << %(</#{tag_name}>)
logger.warn 'tables must have at least one body row' unless has_body
result.join LF
end
|
#convert_thematic_break(node) ⇒ Object
360
361
362
|
# File 'lib/asciidoctor/converter/docbook5.rb', line 360
def convert_thematic_break node
'<simpara><?asciidoc-hr?></simpara>'
end
|
#convert_ulist(node) ⇒ Object
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
|
# File 'lib/asciidoctor/converter/docbook5.rb', line 440
def convert_ulist node
result = []
if node.style == 'bibliography'
result << %(<bibliodiv#{common_attributes node.id, node.role, node.reftext}>)
result << %(<title>#{node.title}</title>) if node.title?
node.items.each do |item|
result << '<bibliomixed>'
result << %(<bibliomisc>#{item.text}</bibliomisc>)
result << item.content if item.blocks?
result << '</bibliomixed>'
end
result << '</bibliodiv>'
else
mark_type = (checklist = node.option? 'checklist') ? 'none' : node.style
mark_attribute = mark_type ? %( mark="#{mark_type}") : ''
result << %(<itemizedlist#{common_attributes node.id, node.role, node.reftext}#{mark_attribute}>)
result << %(<title>#{node.title}</title>) if node.title?
node.items.each do |item|
text_marker = (item.attr? 'checked') ? '✓ ' : '❏ ' if checklist && (item.attr? 'checkbox')
result << %(<listitem#{common_attributes item.id, item.role}>)
result << %(<simpara>#{text_marker || ''}#{item.text}</simpara>)
result << item.content if item.blocks?
result << '</listitem>'
end
result << '</itemizedlist>'
end
result.join LF
end
|
#convert_verse(node) ⇒ Object
469
470
471
|
# File 'lib/asciidoctor/converter/docbook5.rb', line 469
def convert_verse node
blockquote_tag(node, (node.has_role? 'epigraph') && 'epigraph') { %(<literallayout>#{node.content}</literallayout>) }
end
|