Class: Asciidoctor::Converter::ManPageConverter

Inherits:
Base
  • Object
show all
Defined in:
lib/asciidoctor/converter/manpage.rb

Overview

Constant Summary collapse

WHITESPACE =
%(#{LF}#{TAB} )
ET =
' ' * 8
ESC =

troff leader marker

?\u001b
ESC_BS =

escaped backslash (indicates troff formatting sequence)

%(#{ESC}\\)
ESC_FS =

escaped full stop (indicates troff macro)

%(#{ESC}.)
LiteralBackslashRx =
/\A\\|(#{ESC})?\\/
LeadingPeriodRx =
/^\./
EscapedMacroRx =
/^(?:#{ESC}\\c\n)?#{ESC}\.((?:URL|MTO) "#{CC_ANY}*?" "#{CC_ANY}*?" )( |[^\s]*)(#{CC_ANY}*?)(?: *#{ESC}\\c)?$/
MalformedEscapedMacroRx =
/(#{ESC}\\c) (#{ESC}\.(?:URL|MTO) )/
MockMacroRx =
%r(</?(#{ESC}\\[^>]+)>)
EmDashCharRefRx =
/&#8212;(?:&#8203;)?/
EllipsisCharRefRx =
/&#8230;(?:&#8203;)?/
WrappedIndentRx =
/#{CG_BLANK}*#{LF}#{CG_BLANK}*/
XMLMarkupRx =
/&#?[a-z\d]+;|</
PCDATAFilterRx =
/(&#?[a-z\d]+;|<[^>]+>)|([^&<]+)/

Constants included from DefaultFactory

DefaultFactory::PROVIDED

Instance Attribute Summary

Attributes included from Asciidoctor::Converter

#backend

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Base

#content_only, #convert, #handles?, #skip

Methods included from Asciidoctor::Converter

#convert, derive_backend_traits, #handles?

Methods included from DefaultFactory

#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

#initialize(backend, opts = {}) ⇒ ManPageConverter

Returns a new instance of ManPageConverter.



33
34
35
36
# File 'lib/asciidoctor/converter/manpage.rb', line 33

def initialize backend, opts = {}
  @backend = backend
  init_backend_traits basebackend: 'manpage', filetype: 'man', outfilesuffix: '.man', supports_templates: true
end

Class Method Details

.write_alternate_pages(mannames, manvolnum, target) ⇒ Object



666
667
668
669
670
671
672
673
674
# File 'lib/asciidoctor/converter/manpage.rb', line 666

def self.write_alternate_pages mannames, manvolnum, target
  return unless mannames && mannames.size > 1
  mannames.shift
  manvolext = %(.#{manvolnum})
  dir, basename = ::File.split target
  mannames.each do |manname|
    ::File.write ::File.join(dir, %(#{manname}#{manvolext})), %(.so #{basename}), mode: FILE_WRITE_MODE
  end
end

Instance Method Details

#convert_admonition(node) ⇒ Object



153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
# File 'lib/asciidoctor/converter/manpage.rb', line 153

def convert_admonition node
  result = []
  result << %(.if n .sp
.RS 4
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
.ps +1
.B #{node.attr 'textlabel'}#{node.title? ? "\\fP: #{manify node.title}" : ''}
.ps -1
.br
#{enclose_content node}
.sp .5v
.RE)
  result.join LF
end

#convert_colist(node) ⇒ Object



171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
# File 'lib/asciidoctor/converter/manpage.rb', line 171

def convert_colist node
  result = []
  result << %(.sp
.B #{manify node.title}
.br) if node.title?
  result << '.TS
tab(:);
r lw(\n(.lu*75u/100u).'

  num = 0
  node.items.each do |item|
    result << %(\\fB(#{num += 1})\\fP\\h'-2n':T{)
    result << (manify item.text, whitespace: :normalize)
    result << item.content if item.blocks?
    result << 'T}'
  end
  result << '.TE'
  result.join LF
end

#convert_dlist(node) ⇒ Object

TODO implement horizontal (if it makes sense)



192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
# File 'lib/asciidoctor/converter/manpage.rb', line 192

def convert_dlist node
  result = []
  result << %(.sp
.B #{manify node.title}
.br) if node.title?
  counter = 0
  node.items.each do |terms, dd|
    counter += 1
    case node.style
    when 'qanda'
      result << %(.sp
#{counter}. #{manify terms.map {|dt| dt.text }.join ' '}
.RS 4)
    else
      result << %(.sp
#{manify terms.map {|dt| dt.text }.join(', '), whitespace: :normalize}
.RS 4)
    end
    if dd
      result << (manify dd.text, whitespace: :normalize) if dd.text?
      result << dd.content if dd.blocks?
    end
    result << '.RE'
  end
  result.join LF
end

#convert_document(node) ⇒ Object



38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
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
# File 'lib/asciidoctor/converter/manpage.rb', line 38

def convert_document node
  unless node.attr? 'mantitle'
    raise 'asciidoctor: ERROR: doctype must be set to manpage when using manpage backend'
  end
  mantitle = node.attr 'mantitle'
  manvolnum = node.attr 'manvolnum', '1'
  manname = node.attr 'manname', mantitle
  manmanual = node.attr 'manmanual'
  mansource = node.attr 'mansource'
  docdate = (node.attr? 'reproducible') ? nil : (node.attr 'docdate')
  # NOTE the first line enables the table (tbl) preprocessor, necessary for non-Linux systems
  result = [%('\\" t
.\\"     Title: #{mantitle}
.\\"    Author: #{(node.attr? 'authors') ? (node.attr 'authors') : '[see the "AUTHOR(S)" section]'}
.\\" Generator: Asciidoctor #{node.attr 'asciidoctor-version'})]
  result << %(.\\"      Date: #{docdate}) if docdate
  result << %(.\\"    Manual: #{manmanual ? (manmanual.tr_s WHITESPACE, ' ') : '\ \&'}
.\\"    Source: #{mansource ? (mansource.tr_s WHITESPACE, ' ') : '\ \&'}
.\\"  Language: English
.\\")
  # TODO add document-level setting to disable capitalization of manname
  result << %(.TH "#{manify manname.upcase}" "#{manvolnum}" "#{docdate}" "#{mansource ? (manify mansource) : '\ \&'}" "#{manmanual ? (manify manmanual) : '\ \&'}")
  # define portability settings
  # see http://bugs.debian.org/507673
  # see http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
  result << '.ie \n(.g .ds Aq \(aq'
  result << '.el       .ds Aq \''
  # set sentence_space_size to 0 to prevent extra space between sentences separated by a newline
  # the alternative is to add \& at the end of the line
  result << '.ss \n[.ss] 0'
  # disable hyphenation
  result << '.nh'
  # disable justification (adjust text to left margin only)
  result << '.ad l'
  # define URL macro for portability
  # see http://web.archive.org/web/20060102165607/http://people.debian.org/~branden/talks/wtfm/wtfm.pdf
  #
  # Usage
  #
  # .URL "http://www.debian.org" "Debian" "."
  #
  # * First argument: the URL
  # * Second argument: text to be hyperlinked
  # * Third (optional) argument: text that needs to immediately trail the hyperlink without intervening whitespace
  result << '.de URL
\\fI\\\\$2\\fP <\\\\$1>\\\\$3
..
.als MTO URL
.if \n[.g] \{\
.  mso www.tmac
.  am URL
.    ad l
.  .
.  am MTO
.    ad l
.  .'
  result << %(.  LINKSTYLE #{node.attr 'man-linkstyle', 'blue R < >'})
  result << '.\}'

  unless node.noheader
    if node.attr? 'manpurpose'
      mannames = node.attr 'mannames', [manname]
      result << %(.SH "#{(node.attr 'manname-title', 'NAME').upcase}"
#{mannames.map {|n| (manify n).gsub '\-', '-' }.join ', '} \\- #{manify node.attr('manpurpose'), whitespace: :normalize})
    end
  end

  result << node.content

  # QUESTION should NOTES come after AUTHOR(S)?
  append_footnotes result, node

  unless (authors = node.authors).empty?
    if authors.size > 1
      result << '.SH "AUTHORS"'
      authors.each do |author|
        result << %(.sp
#{author.name})
      end
    else
      result << %(.SH "AUTHOR"
.sp
#{authors[0].name})
    end
  end

  result.join LF
end

#convert_embedded(node) ⇒ Object

NOTE embedded doesn’t really make sense in the manpage backend



128
129
130
131
132
133
134
135
136
# File 'lib/asciidoctor/converter/manpage.rb', line 128

def convert_embedded node
  result = [node.content]

  append_footnotes result, node

  # QUESTION should we add an AUTHOR(S) section?

  result.join LF
end

#convert_example(node) ⇒ Object



219
220
221
222
223
224
225
226
227
228
# File 'lib/asciidoctor/converter/manpage.rb', line 219

def convert_example node
  result = []
  result << (node.title? ? %(.sp
.B #{manify node.captioned_title}
.br) : '.sp')
  result << %(.RS 4
#{enclose_content node}
.RE)
  result.join LF
end

#convert_floating_title(node) ⇒ Object



230
231
232
# File 'lib/asciidoctor/converter/manpage.rb', line 230

def convert_floating_title node
  %(.SS "#{manify node.title}")
end

#convert_image(node) ⇒ Object



234
235
236
237
238
239
240
241
# File 'lib/asciidoctor/converter/manpage.rb', line 234

def convert_image node
  result = []
  result << (node.title? ? %(.sp
.B #{manify node.captioned_title}
.br) : '.sp')
  result << %([#{node.alt}])
  result.join LF
end

#convert_inline_anchor(node) ⇒ Object



563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
# File 'lib/asciidoctor/converter/manpage.rb', line 563

def convert_inline_anchor node
  target = node.target
  case node.type
  when :link
    if target.start_with? 'mailto:'
      macro = 'MTO'
      target = target.slice 7, target.length
    else
      macro = 'URL'
    end
    if (text = node.text) == target
      text = ''
    else
      text = text.gsub '"', %[#{ESC_BS}(dq]
    end
    target = target.sub '@', %[#{ESC_BS}(at] if macro == 'MTO'
    %(#{ESC_BS}c#{LF}#{ESC_FS}#{macro} "#{target}" "#{text}" )
  when :xref
    unless (text = node.text)
      if AbstractNode === (ref = (@refs ||= node.document.catalog[:refs])[refid = node.attributes['refid']] || (refid.nil_or_empty? ? (top = get_root_document node) : nil))
        if (@resolving_xref ||= (outer = true)) && outer && (text = ref.xreftext node.attr 'xrefstyle', nil, true)
          text = uppercase_pcdata text if ref.context === :section && ref.level < 2 && text == ref.title
        else
          text = top ? '[^top]' : %([#{refid}])
        end
        @resolving_xref = nil if outer
      else
        text = %([#{refid}])
      end
    end
    text
  when :ref, :bibref
    # These are anchor points, which shouldn't be visible
    ''
  else
    logger.warn %(unknown anchor type: #{node.type.inspect})
    nil
  end
end

#convert_inline_break(node) ⇒ Object



603
604
605
# File 'lib/asciidoctor/converter/manpage.rb', line 603

def convert_inline_break node
  %(#{node.text}#{LF}#{ESC_FS}br)
end

#convert_inline_button(node) ⇒ Object



607
608
609
# File 'lib/asciidoctor/converter/manpage.rb', line 607

def convert_inline_button node
  %(<#{ESC_BS}fB>[#{ESC_BS}0#{node.text}#{ESC_BS}0]</#{ESC_BS}fP>)
end

#convert_inline_callout(node) ⇒ Object



611
612
613
# File 'lib/asciidoctor/converter/manpage.rb', line 611

def convert_inline_callout node
  %(<#{ESC_BS}fB>(#{node.text})<#{ESC_BS}fP>)
end

#convert_inline_footnote(node) ⇒ Object



615
616
617
618
619
620
621
# File 'lib/asciidoctor/converter/manpage.rb', line 615

def convert_inline_footnote node
  if (index = node.attr 'index')
    %([#{index}])
  elsif node.type == :xref
    %([#{node.text}])
  end
end

#convert_inline_image(node) ⇒ Object



623
624
625
# File 'lib/asciidoctor/converter/manpage.rb', line 623

def convert_inline_image node
  (node.attr? 'link') ? %([#{node.alt}] <#{node.attr 'link'}>) : %([#{node.alt}])
end

#convert_inline_indexterm(node) ⇒ Object



627
628
629
# File 'lib/asciidoctor/converter/manpage.rb', line 627

def convert_inline_indexterm node
  node.type == :visible ? node.text : ''
end

#convert_inline_kbd(node) ⇒ Object



631
632
633
# File 'lib/asciidoctor/converter/manpage.rb', line 631

def convert_inline_kbd node
  %[<#{ESC_BS}f(CR>#{(keys = node.attr 'keys').size == 1 ? keys[0] : (keys.join "#{ESC_BS}0+#{ESC_BS}0")}</#{ESC_BS}fP>]
end

#convert_inline_menu(node) ⇒ Object



635
636
637
638
639
640
641
642
643
644
645
646
# File 'lib/asciidoctor/converter/manpage.rb', line 635

def convert_inline_menu node
  caret = %[#{ESC_BS}0#{ESC_BS}(fc#{ESC_BS}0]
  menu = node.attr 'menu'
  if !(submenus = node.attr 'submenus').empty?
    submenu_path = submenus.map {|item| %(<#{ESC_BS}fI>#{item}</#{ESC_BS}fP>) }.join caret
    %(<#{ESC_BS}fI>#{menu}</#{ESC_BS}fP>#{caret}#{submenu_path}#{caret}<#{ESC_BS}fI>#{node.attr 'menuitem'}</#{ESC_BS}fP>)
  elsif (menuitem = node.attr 'menuitem')
    %(<#{ESC_BS}fI>#{menu}#{caret}#{menuitem}</#{ESC_BS}fP>)
  else
    %(<#{ESC_BS}fI>#{menu}</#{ESC_BS}fP>)
  end
end

#convert_inline_quoted(node) ⇒ Object

NOTE use fake XML elements to prevent creating artificial word boundaries



649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
# File 'lib/asciidoctor/converter/manpage.rb', line 649

def convert_inline_quoted node
  case node.type
  when :emphasis
    %(<#{ESC_BS}fI>#{node.text}</#{ESC_BS}fP>)
  when :strong
    %(<#{ESC_BS}fB>#{node.text}</#{ESC_BS}fP>)
  when :monospaced
    %[<#{ESC_BS}f(CR>#{node.text}</#{ESC_BS}fP>]
  when :single
    %[<#{ESC_BS}(oq>#{node.text}</#{ESC_BS}(cq>]
  when :double
    %[<#{ESC_BS}(lq>#{node.text}</#{ESC_BS}(rq>]
  else
    node.text
  end
end

#convert_listing(node) ⇒ Object



243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
# File 'lib/asciidoctor/converter/manpage.rb', line 243

def convert_listing node
  result = []
  result << %(.sp
.B #{manify node.captioned_title}
.br) if node.title?
  result << %(.sp
.if n .RS 4
.nf
.fam C
#{manify node.content, whitespace: :preserve}
.fam
.fi
.if n .RE)
  result.join LF
end

#convert_literal(node) ⇒ Object



259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
# File 'lib/asciidoctor/converter/manpage.rb', line 259

def convert_literal node
  result = []
  result << %(.sp
.B #{manify node.title}
.br) if node.title?
  result << %(.sp
.if n .RS 4
.nf
.fam C
#{manify node.content, whitespace: :preserve}
.fam
.fi
.if n .RE)
  result.join LF
end

#convert_olist(node) ⇒ Object



286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
# File 'lib/asciidoctor/converter/manpage.rb', line 286

def convert_olist node
  result = []
  result << %(.sp
.B #{manify node.title}
.br) if node.title?

  start = (node.attr 'start', 1).to_i
  node.items.each_with_index do |item, idx|
    result << %(.sp
.RS 4
.ie n \\{\\
\\h'-04' #{numeral = idx + start}.\\h'+01'\\c
.\\}
.el \\{\\
.  sp -1
.  IP " #{numeral}." 4.2
.\\}
#{manify item.text, whitespace: :normalize})
    result << item.content if item.blocks?
    result << '.RE'
  end
  result.join LF
end

#convert_open(node) ⇒ Object



310
311
312
313
314
315
316
317
# File 'lib/asciidoctor/converter/manpage.rb', line 310

def convert_open node
  case node.style
  when 'abstract', 'partintro'
    enclose_content node
  else
    node.content
  end
end

#convert_page_break(node) ⇒ Object



319
320
321
# File 'lib/asciidoctor/converter/manpage.rb', line 319

def convert_page_break node
  '.bp'
end

#convert_paragraph(node) ⇒ Object



323
324
325
326
327
328
329
330
331
332
333
# File 'lib/asciidoctor/converter/manpage.rb', line 323

def convert_paragraph node
  if node.title?
    %(.sp
.B #{manify node.title}
.br
#{manify node.content, whitespace: :normalize})
  else
    %(.sp
#{manify node.content, whitespace: :normalize})
  end
end

#convert_quote(node) ⇒ Object



338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
# File 'lib/asciidoctor/converter/manpage.rb', line 338

def convert_quote node
  result = []
  if node.title?
    result << %(.sp
.RS 3
.B #{manify node.title}
.br
.RE)
  end
  attribution_line = (node.attr? 'citetitle') ? %(#{node.attr 'citetitle'} ) : nil
  attribution_line = (node.attr? 'attribution') ? %[#{attribution_line}\\(em #{node.attr 'attribution'}] : nil
  result << %(.RS 3
.ll -.6i
#{enclose_content node}
.br
.RE
.ll)
  if attribution_line
    result << %(.RS 5
.ll -.10i
#{attribution_line}
.RE
.ll)
  end
  result.join LF
end

#convert_section(node) ⇒ Object



138
139
140
141
142
143
144
145
146
147
148
149
150
151
# File 'lib/asciidoctor/converter/manpage.rb', line 138

def convert_section node
  result = []
  if node.level > 1
    macro = 'SS'
    # QUESTION why captioned title? why not when level == 1?
    stitle = node.captioned_title
  else
    macro = 'SH'
    stitle = uppercase_pcdata node.title
  end
  result << %(.#{macro} "#{manify stitle}"
#{node.content})
  result.join LF
end

#convert_sidebar(node) ⇒ Object



275
276
277
278
279
280
281
282
283
284
# File 'lib/asciidoctor/converter/manpage.rb', line 275

def convert_sidebar node
  result = []
  result << (node.title? ? %(.sp
.B #{manify node.title}
.br) : '.sp')
  result << %(.RS 4
#{enclose_content node}
.RE)
  result.join LF
end

#convert_stem(node) ⇒ Object



365
366
367
368
369
370
371
372
373
374
375
376
# File 'lib/asciidoctor/converter/manpage.rb', line 365

def convert_stem node
  result = []
  result << (node.title? ? %(.sp
.B #{manify node.title}
.br) : '.sp')
  open, close = BLOCK_MATH_DELIMITERS[node.style.to_sym]
  if ((equation = node.content).start_with? open) && (equation.end_with? close)
    equation = equation.slice open.length, equation.length - open.length - close.length
  end
  result << %(#{manify equation, whitespace: :preserve} (#{node.style}))
  result.join LF
end

#convert_table(node) ⇒ Object

FIXME: The reason this method is so complicated is because we are not receiving empty(marked) cells when there are colspans or rowspans. This method has to create a map of all cells and in the case of rowspans create empty cells as placeholders of the span. To fix this, asciidoctor needs to provide an API to tell the user if a given cell is being used as a colspan or rowspan.



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
437
438
439
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
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
# File 'lib/asciidoctor/converter/manpage.rb', line 384

def convert_table node
  result = []
  if node.title?
    result << %(.sp
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
.B #{manify node.captioned_title}
)
  end
  result << '.TS
allbox tab(:);'
  row_header = []
  row_text = []
  row_index = 0
  node.rows.to_h.each do |tsec, rows|
    rows.each do |row|
      row_header[row_index] ||= []
      row_text[row_index] ||= []
      # result << LF
      # l left-adjusted
      # r right-adjusted
      # c centered-adjusted
      # n numerical align
      # a alphabetic align
      # s spanned
      # ^ vertically spanned
      remaining_cells = row.size
      row.each_with_index do |cell, cell_index|
        remaining_cells -= 1
        row_header[row_index][cell_index] ||= []
        # Add an empty cell if this is a rowspan cell
        if row_header[row_index][cell_index] == ['^t']
          row_text[row_index] << %(T{#{LF}.sp#{LF}T}:)
        end
        row_text[row_index] << %(T{#{LF}.sp#{LF})
        cell_halign = (cell.attr 'halign', 'left').chr
        if tsec == :body
          if row_header[row_index].empty? || row_header[row_index][cell_index].empty?
            row_header[row_index][cell_index] << %(#{cell_halign}t)
          else
            row_header[row_index][cell_index + 1] ||= []
            row_header[row_index][cell_index + 1] << %(#{cell_halign}t)
          end
          case cell.style
          when :asciidoc
            cell_content = cell.content
          when :literal
            cell_content = %(.nf#{LF}#{manify cell.text, whitespace: :preserve}#{LF}.fi)
          else
            cell_content = manify cell.content.join, whitespace: :normalize
          end
          row_text[row_index] << %(#{cell_content}#{LF})
        else # tsec == :head || tsec == :foot
          if row_header[row_index].empty? || row_header[row_index][cell_index].empty?
            row_header[row_index][cell_index] << %(#{cell_halign}tB)
          else
            row_header[row_index][cell_index + 1] ||= []
            row_header[row_index][cell_index + 1] << %(#{cell_halign}tB)
          end
          row_text[row_index] << %(#{manify cell.text, whitespace: :normalize}#{LF})
        end
        if cell.colspan && cell.colspan > 1
          (cell.colspan - 1).times do |i|
            if row_header[row_index].empty? || row_header[row_index][cell_index].empty?
              row_header[row_index][cell_index + i] << 'st'
            else
              row_header[row_index][cell_index + 1 + i] ||= []
              row_header[row_index][cell_index + 1 + i] << 'st'
            end
          end
        end
        if cell.rowspan && cell.rowspan > 1
          (cell.rowspan - 1).times do |i|
            row_header[row_index + 1 + i] ||= []
            if row_header[row_index + 1 + i].empty? || row_header[row_index + 1 + i][cell_index].empty?
              row_header[row_index + 1 + i][cell_index] ||= []
              row_header[row_index + 1 + i][cell_index] << '^t'
            else
              row_header[row_index + 1 + i][cell_index + 1] ||= []
              row_header[row_index + 1 + i][cell_index + 1] << '^t'
            end
          end
        end
        if remaining_cells >= 1
          row_text[row_index] << 'T}:'
        else
          row_text[row_index] << %(T}#{LF})
        end
      end
      row_index += 1
    end unless rows.empty?
  end

  #row_header.each do |row|
  #  result << LF
  #  row.each_with_index do |cell, i|
  #    result << (cell.join ' ')
  #    result << ' ' if row.size > i + 1
  #  end
  #end
  # FIXME temporary fix to get basic table to display
  result << LF
  result << ('lt ' * row_header[0].size).chop

  result << %(.#{LF})
  row_text.each do |row|
    result << row.join
  end
  result << %(.TE#{LF}.sp)
  result.join
end

#convert_thematic_break(node) ⇒ Object



498
499
500
501
502
# File 'lib/asciidoctor/converter/manpage.rb', line 498

def convert_thematic_break node
  '.sp
.ce
\l\'\n(.lu*25u/100u\(ap\''
end

#convert_ulist(node) ⇒ Object



506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
# File 'lib/asciidoctor/converter/manpage.rb', line 506

def convert_ulist node
  result = []
  result << %(.sp
.B #{manify node.title}
.br) if node.title?
  node.items.map do |item|
    result << %[.sp
.RS 4
.ie n \\{\\
\\h'-04'\\(bu\\h'+03'\\c
.\\}
.el \\{\\
.  sp -1
.  IP \\(bu 2.3
.\\}
#{manify item.text, whitespace: :normalize}]
    result << item.content if item.blocks?
    result << '.RE'
  end
  result.join LF
end

#convert_verse(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
# File 'lib/asciidoctor/converter/manpage.rb', line 528

def convert_verse node
  result = []
  if node.title?
    result << %(.sp
.B #{manify node.title}
.br)
  end
  attribution_line = (node.attr? 'citetitle') ? %(#{node.attr 'citetitle'} ) : nil
  attribution_line = (node.attr? 'attribution') ? %[#{attribution_line}\\(em #{node.attr 'attribution'}] : nil
  result << %(.sp
.nf
#{manify node.content, whitespace: :preserve}
.fi
.br)
  if attribution_line
    result << %(.in +.5i
.ll -.5i
#{attribution_line}
.in
.ll)
  end
  result.join LF
end

#convert_video(node) ⇒ Object



552
553
554
555
556
557
558
559
560
561
# File 'lib/asciidoctor/converter/manpage.rb', line 552

def convert_video node
  start_param = (node.attr? 'start') ? %(&start=#{node.attr 'start'}) : ''
  end_param = (node.attr? 'end') ? %(&end=#{node.attr 'end'}) : ''
  result = []
  result << (node.title? ? %(.sp
.B #{manify node.title}
.br) : '.sp')
  result << %(<#{node.media_uri(node.attr 'target')}#{start_param}#{end_param}> (video))
  result.join LF
end