Class: ReVIEW::RSTBuilder

Inherits:
Builder show all
Includes:
TextUtils
Defined in:
lib/review/rstbuilder.rb

Overview

RSTBuilder is a builder for reStructuredText (docutils.sourceforge.net/rst.html). reStructuredText is used in Sphinx (www.sphinx-doc.org/).

If you want to use ‘ruby`, `del` and `column`, you sould use sphinxcontrib-textstyle package (pypi.python.org/pypi/sphinxcontrib-textstyle).

Constant Summary

Constants inherited from Builder

Builder::CAPTION_TITLES

Instance Attribute Summary

Attributes inherited from Builder

#doc_status, #location

Attributes included from Loggable

#logger

Instance Method Summary collapse

Methods included from TextUtils

#add_space?, #detab, #join_lines_to_paragraph, #split_paragraph

Methods inherited from Builder

#beginchild, #bibpaper, #bind, #blankline, #caption_top?, #captionblock, #check_nest, #check_nested_minicolumn, #compile_inline, #detab, #embed, #endchild, #escape, #extract_chapter_id, #firstlinenum, #get_chap, #graph, #graph_aafigure, #graph_blockdiag, #graph_gnuplot, #graph_graphviz, #graph_plantuml, #handle_metric, #highlight?, #image, #in_minicolumn?, #initialize, #inline_column, #inline_column_chap, #inline_embed, #inline_eq, #inline_hd, #inline_href, #inline_imgref, #inline_include, #inline_kw, #inline_ruby, #inline_tcy, #inline_title, #inline_w, #inline_wb, #line_num, #list, #listnum, #load_words, #minicolumn_block_name?, #over_secnolevel?, #parse_metric, #parse_table_rows, #previous_list_type, #raw, #result_metric, #solve_nest, #system_graph, #table, #table_row_separator_regexp, #table_rows, #target_name, #tsize, #ul_item_begin, #ul_item_end

Methods included from Loggable

#app_error, #debug, #error, #error!, #warn

Constructor Details

This class inherits a constructor from ReVIEW::Builder

Instance Method Details

#base_block(_type, lines, caption = nil) ⇒ Object



200
201
202
203
204
205
# File 'lib/review/rstbuilder.rb', line 200

def base_block(_type, lines, caption = nil)
  blank
  puts compile_inline(caption) unless caption.nil?
  puts lines.join("\n")
  blank
end

#base_parablock(type, lines, caption = nil) ⇒ Object



207
208
209
210
211
212
213
# File 'lib/review/rstbuilder.rb', line 207

def base_parablock(type, lines, caption = nil)
  puts ".. #{type}::"
  blank
  puts "   #{compile_inline(caption)}" unless caption.nil?
  puts '   ' + split_paragraph(lines).join("\n")
  blank
end

#best(lines, caption = nil) ⇒ Object



624
625
626
# File 'lib/review/rstbuilder.rb', line 624

def best(lines, caption = nil)
  base_parablock('best', lines, caption)
end

#bibpaper_bibpaper(id, caption, lines) ⇒ Object



772
773
774
# File 'lib/review/rstbuilder.rb', line 772

def bibpaper_bibpaper(id, caption, lines)
  puts ".. [#{id}] #{compile_inline(caption)} #{split_paragraph(lines).join}"
end

#bibpaper_header(id, caption) ⇒ Object



769
770
# File 'lib/review/rstbuilder.rb', line 769

def bibpaper_header(id, caption)
end

#bpo(lines) ⇒ Object



703
704
705
# File 'lib/review/rstbuilder.rb', line 703

def bpo(lines)
  base_block('bpo', lines, nil)
end

#caution(lines, caption = nil) ⇒ Object



636
637
638
# File 'lib/review/rstbuilder.rb', line 636

def caution(lines, caption = nil)
  base_parablock('caution', lines, caption)
end

#centering(lines) ⇒ Object



582
583
584
# File 'lib/review/rstbuilder.rb', line 582

def centering(lines)
  base_parablock('centering', lines, nil)
end

#circle_begin(_level, _label, caption) ⇒ Object



753
754
755
# File 'lib/review/rstbuilder.rb', line 753

def circle_begin(_level, _label, caption)
  puts "・\t#{caption}"
end

#circle_end(level) ⇒ Object



757
758
# File 'lib/review/rstbuilder.rb', line 757

def circle_end(level)
end

#cmd(lines, _caption = nil) ⇒ Object



253
254
255
256
257
258
# File 'lib/review/rstbuilder.rb', line 253

def cmd(lines, _caption = nil)
  puts '.. code-block:: bash'
  lines.each do |line|
    puts '   ' + detab(line)
  end
end

#column_begin(_level, _label, caption) ⇒ Object



514
515
516
# File 'lib/review/rstbuilder.rb', line 514

def column_begin(_level, _label, caption)
  common_column_begin('column', caption)
end

#column_end(_level) ⇒ Object



518
519
520
# File 'lib/review/rstbuilder.rb', line 518

def column_end(_level)
  common_column_end('column')
end

#comment(lines, _comment = nil) ⇒ Object



357
358
359
# File 'lib/review/rstbuilder.rb', line 357

def comment(lines, _comment = nil)
  puts lines.map { |line| "  .. #{line}" }.join
end

#common_column_begin(_type, caption) ⇒ Object



502
503
504
505
506
507
# File 'lib/review/rstbuilder.rb', line 502

def common_column_begin(_type, caption)
  blank
  puts ".. column:: #{compile_inline(caption)}"
  blank
  @in_role = true
end

#common_column_end(_type) ⇒ Object



509
510
511
512
# File 'lib/review/rstbuilder.rb', line 509

def common_column_end(_type)
  @in_role = false
  blank
end

#compile_href(url, label) ⇒ Object



382
383
384
385
386
387
# File 'lib/review/rstbuilder.rb', line 382

def compile_href(url, label)
  if label.blank?
    label = url
  end
  " `#{label} <#{url}>`_ "
end

#compile_kw(word, alt) ⇒ Object



374
375
376
377
378
379
380
# File 'lib/review/rstbuilder.rb', line 374

def compile_kw(word, alt)
  if alt
    " **#{word}#{alt.strip})** "
  else
    " **#{word}** "
  end
end

#compile_ruby(base, ruby) ⇒ Object



370
371
372
# File 'lib/review/rstbuilder.rb', line 370

def compile_ruby(base, ruby)
  " :ruby:`#{base}`<#{ruby}>`_ "
end

#dd(lines) ⇒ Object



156
157
158
159
160
# File 'lib/review/rstbuilder.rb', line 156

def dd(lines)
  split_paragraph(lines).each do |paragraph|
    puts "  #{paragraph.delete("\n")}"
  end
end

#dl_beginObject



149
150
# File 'lib/review/rstbuilder.rb', line 149

def dl_begin
end

#dl_endObject



162
163
# File 'lib/review/rstbuilder.rb', line 162

def dl_end
end

#dt(line) ⇒ Object



152
153
154
# File 'lib/review/rstbuilder.rb', line 152

def dt(line)
  puts line
end

#dtp(str) ⇒ Object



699
700
701
# File 'lib/review/rstbuilder.rb', line 699

def dtp(str)
  # FIXME
end

#edition_begin(_level, _label, caption) ⇒ Object



546
547
548
# File 'lib/review/rstbuilder.rb', line 546

def edition_begin(_level, _label, caption)
  common_column_begin('edition', caption)
end

#edition_end(_level) ⇒ Object



550
551
552
# File 'lib/review/rstbuilder.rb', line 550

def edition_end(_level)
  common_column_end('edition')
end

#emlist(lines, caption = nil, lang = nil) ⇒ Object



215
216
217
218
219
220
221
222
223
224
225
226
227
228
# File 'lib/review/rstbuilder.rb', line 215

def emlist(lines, caption = nil, lang = nil)
  blank
  if caption
    puts caption
    print "\n"
  end
  lang ||= 'none'
  puts ".. code-block:: #{lang}"
  blank
  lines.each do |line|
    puts '   ' + detab(line)
  end
  blank
end

#emlistnum(lines, caption = nil, lang = nil) ⇒ Object



230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
# File 'lib/review/rstbuilder.rb', line 230

def emlistnum(lines, caption = nil, lang = nil)
  blank
  if caption
    puts caption
    print "\n"
  end
  lang ||= 'none'
  puts ".. code-block:: #{lang}"
  puts '   :linenos:'
  blank
  lines.each do |line|
    puts '   ' + detab(line)
  end
  blank
end

#emtable(lines, caption = nil) ⇒ Object



353
354
355
# File 'lib/review/rstbuilder.rb', line 353

def emtable(lines, caption = nil)
  table(lines, nil, caption)
end

#expert(lines) ⇒ Object



668
669
670
# File 'lib/review/rstbuilder.rb', line 668

def expert(lines)
  base_parablock('expert', lines, nil)
end

#extnameObject



52
53
54
# File 'lib/review/rstbuilder.rb', line 52

def extname
  '.rst'
end

#flushright(lines) ⇒ Object



578
579
580
# File 'lib/review/rstbuilder.rb', line 578

def flushright(lines)
  base_parablock('flushright', lines, nil)
end

#footnote(id, str) ⇒ Object



361
362
363
364
# File 'lib/review/rstbuilder.rb', line 361

def footnote(id, str)
  puts ".. [##{id.sub(' ', '_')}] #{compile_inline(str)}"
  blank
end

#headline(level, label, caption) ⇒ Object



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
# File 'lib/review/rstbuilder.rb', line 92

def headline(level, label, caption)
  blank
  if label
    puts ".. _#{label}:"
    blank
  end
  p = '='
  case level
  when 1
    unless label
      puts ".. _#{@chapter.name}:"
      blank
    end
    puts '=' * caption.size * 2
  when 2
    p = '='
  when 3
    p = '-'
  when 4
    p = '`'
  when 5
    p = '~'
  end

  puts caption
  puts p * caption.size * 2
  blank
end

#hood_begin(_level, _label, caption) ⇒ Object



538
539
540
# File 'lib/review/rstbuilder.rb', line 538

def hood_begin(_level, _label, caption)
  common_column_begin('hood', caption)
end

#hood_end(_level) ⇒ Object



542
543
544
# File 'lib/review/rstbuilder.rb', line 542

def hood_end(_level)
  common_column_end('hood')
end

#hrObject



181
182
183
# File 'lib/review/rstbuilder.rb', line 181

def hr
  puts '----'
end

#image_dummy(id, caption, lines) ⇒ Object



289
290
291
292
293
294
295
296
297
298
# File 'lib/review/rstbuilder.rb', line 289

def image_dummy(id, caption, lines)
  chapter, id = extract_chapter_id(id)
  puts ".. _#{id}:"
  blank
  puts ".. figure:: images/#{chapter.name}/#{id}.#{image_ext}"
  blank
  puts "   #{caption}"
  puts "   #{lines.join}"
  blank
end

#image_extObject



48
49
50
# File 'lib/review/rstbuilder.rb', line 48

def image_ext
  'png'
end

#image_image(id, caption, metric) ⇒ Object



274
275
276
277
278
279
280
281
282
283
284
285
286
287
# File 'lib/review/rstbuilder.rb', line 274

def image_image(id, caption, metric)
  chapter, id = extract_chapter_id(id)
  if metric
    scale = metric.split('=')[1].to_f * 100
  end

  puts ".. _#{id}:"
  blank
  puts ".. figure:: images/#{chapter.name}/#{id}.#{image_ext}"
  puts "   :scale:#{scale}%" if scale
  blank
  puts "   #{caption}"
  blank
end

#important(lines, caption = nil) ⇒ Object



628
629
630
# File 'lib/review/rstbuilder.rb', line 628

def important(lines, caption = nil)
  base_parablock('important', lines, caption)
end

#indepimage(_lines, id, caption = '', _metric = nil) ⇒ Object Also known as: numberlessimage



682
683
684
685
686
687
688
689
690
# File 'lib/review/rstbuilder.rb', line 682

def indepimage(_lines, id, caption = '', _metric = nil)
  chapter, id = extract_chapter_id(id)
  puts ".. _#{id}:"
  blank
  puts ".. figure:: images/#{chapter.name}/#{id}.#{image_ext}"
  blank
  puts "   #{compile_inline(caption)}"
  blank
end

#info(lines, caption = nil) ⇒ Object



616
617
618
# File 'lib/review/rstbuilder.rb', line 616

def info(lines, caption = nil)
  base_parablock('info', lines, caption)
end

#inline_ami(str) ⇒ Object



424
425
426
427
# File 'lib/review/rstbuilder.rb', line 424

def inline_ami(str)
  # TODO: ami is not default role
  " :ami:`#{str}` "
end

#inline_b(str) ⇒ Object Also known as: inline_strong



433
434
435
# File 'lib/review/rstbuilder.rb', line 433

def inline_b(str)
  " **#{str.gsub('*', '\*')}** "
end

#inline_balloon(str) ⇒ Object



466
467
468
# File 'lib/review/rstbuilder.rb', line 466

def inline_balloon(str)
  %Q(\t←#{str.gsub(/@maru\[(\d+)\]/, inline_maru('\1'))})
end

#inline_bib(id) ⇒ Object



780
781
782
# File 'lib/review/rstbuilder.rb', line 780

def inline_bib(id)
  " [#{id}]_ "
end

#inline_bou(str) ⇒ Object



456
457
458
459
# File 'lib/review/rstbuilder.rb', line 456

def inline_bou(str)
  # TODO: bou is not default role
  " :bou:`#{str}` "
end

#inline_br(_str) ⇒ Object



719
720
721
# File 'lib/review/rstbuilder.rb', line 719

def inline_br(_str)
  "\n"
end

#inline_chap(id) ⇒ Object

rubocop:disable Lint/UselessMethodDefinition



727
728
729
# File 'lib/review/rstbuilder.rb', line 727

def inline_chap(id) # rubocop:disable Lint/UselessMethodDefinition
  super
end

#inline_chapref(id) ⇒ Object



731
732
733
# File 'lib/review/rstbuilder.rb', line 731

def inline_chapref(id)
  " :numref:`#{id}` "
end

#inline_code(str) ⇒ Object



715
716
717
# File 'lib/review/rstbuilder.rb', line 715

def inline_code(str)
  " :code:`#{str}` "
end

#inline_comment(str) ⇒ Object



474
475
476
477
478
479
480
# File 'lib/review/rstbuilder.rb', line 474

def inline_comment(str)
  if @book.config['draft']
    str
  else
    ''
  end
end

#inline_del(str) ⇒ Object



711
712
713
# File 'lib/review/rstbuilder.rb', line 711

def inline_del(str)
  " :del:`#{str}` "
end

#inline_dtp(_str) ⇒ Object



707
708
709
# File 'lib/review/rstbuilder.rb', line 707

def inline_dtp(_str)
  ''
end

#inline_fn(id) ⇒ Object



366
367
368
# File 'lib/review/rstbuilder.rb', line 366

def inline_fn(id)
  " [##{id.sub(' ', '_')}]_ "
end

#inline_hd_chap(_chap, id) ⇒ Object



486
487
488
# File 'lib/review/rstbuilder.rb', line 486

def inline_hd_chap(_chap, id)
  " :ref:`#{id}` "
end

#inline_hidx(str) ⇒ Object



420
421
422
# File 'lib/review/rstbuilder.rb', line 420

def inline_hidx(str)
  " :index:`#{str}` "
end

#inline_hint(str) ⇒ Object



406
407
408
409
# File 'lib/review/rstbuilder.rb', line 406

def inline_hint(str)
  # TODO: hint is not default role
  " :hint:`#{str}` "
end

#inline_i(str) ⇒ Object



429
430
431
# File 'lib/review/rstbuilder.rb', line 429

def inline_i(str)
  " *#{str.gsub('*', '\*')}* "
end

#inline_icon(id) ⇒ Object



452
453
454
# File 'lib/review/rstbuilder.rb', line 452

def inline_icon(id)
  " :ref:`#{id}` "
end

#inline_idx(str) ⇒ Object



416
417
418
# File 'lib/review/rstbuilder.rb', line 416

def inline_idx(str)
  " :index:`#{str}` "
end

#inline_img(id) ⇒ Object



270
271
272
# File 'lib/review/rstbuilder.rb', line 270

def inline_img(id)
  " :numref:`#{id}` "
end

#inline_keytop(str) ⇒ Object



461
462
463
464
# File 'lib/review/rstbuilder.rb', line 461

def inline_keytop(str)
  # TODO: keytop is not default role
  " :keytop:`#{str}` "
end

#inline_labelref(idref) ⇒ Object Also known as: inline_ref



744
745
# File 'lib/review/rstbuilder.rb', line 744

def inline_labelref(idref)
end

#inline_list(id) ⇒ Object



185
186
187
# File 'lib/review/rstbuilder.rb', line 185

def inline_list(id)
  " :numref:`#{id}` "
end

#inline_m(str) ⇒ Object



482
483
484
# File 'lib/review/rstbuilder.rb', line 482

def inline_m(str)
  " :math:`#{str}` "
end

#inline_maru(str) ⇒ Object



411
412
413
414
# File 'lib/review/rstbuilder.rb', line 411

def inline_maru(str)
  # TODO: maru is not default role
  " :maru:`#{str}` "
end

#inline_pageref(idref) ⇒ Object



749
750
751
# File 'lib/review/rstbuilder.rb', line 749

def inline_pageref(idref)
  " :ref:`#{idref}` "
end

#inline_raw(str) ⇒ Object



397
398
399
400
401
402
403
404
# File 'lib/review/rstbuilder.rb', line 397

def inline_raw(str)
  matched = str.match(/\|(.*?)\|(.*)/)
  if matched
    matched[2].gsub('\\n', "\n")
  else
    str.gsub('\\n', "\n")
  end
end

#inline_sub(str) ⇒ Object



393
394
395
# File 'lib/review/rstbuilder.rb', line 393

def inline_sub(str)
  " :subscript:`#{str}` "
end

#inline_sup(str) ⇒ Object



389
390
391
# File 'lib/review/rstbuilder.rb', line 389

def inline_sup(str)
  " :superscript:`#{str}` "
end

#inline_table(id) ⇒ Object



266
267
268
# File 'lib/review/rstbuilder.rb', line 266

def inline_table(id)
  "表 :numref:`#{id}` "
end

#inline_tt(str) ⇒ Object Also known as: inline_ttb, inline_tti



439
440
441
# File 'lib/review/rstbuilder.rb', line 439

def inline_tt(str)
  " ``#{str}`` "
end

#inline_ttibold(str) ⇒ Object



739
740
741
742
# File 'lib/review/rstbuilder.rb', line 739

def inline_ttibold(str)
  # TODO
  " **#{str}** "
end

#inline_u(str) ⇒ Object



448
449
450
# File 'lib/review/rstbuilder.rb', line 448

def inline_u(str)
  " :subscript:`#{str}` "
end

#inline_uchar(str) ⇒ Object



470
471
472
# File 'lib/review/rstbuilder.rb', line 470

def inline_uchar(str)
  [str.to_i(16)].pack('U')
end

#inline_warn(str) ⇒ Object



776
777
778
# File 'lib/review/rstbuilder.rb', line 776

def inline_warn(str)
  " :warn:`#{str}` "
end

#insideout_begin(_level, _label, caption) ⇒ Object



554
555
556
# File 'lib/review/rstbuilder.rb', line 554

def insideout_begin(_level, _label, caption)
  common_column_begin('insideout', caption)
end

#insideout_end(_level) ⇒ Object



558
559
560
# File 'lib/review/rstbuilder.rb', line 558

def insideout_end(_level)
  common_column_end('insideout')
end

#insn(lines, caption = nil) ⇒ Object Also known as: box



672
673
674
# File 'lib/review/rstbuilder.rb', line 672

def insn(lines, caption = nil)
  base_block('insn', lines, caption)
end

#label(id) ⇒ Object



694
695
696
697
# File 'lib/review/rstbuilder.rb', line 694

def label(id)
  puts ".. _#{id}:"
  blank
end


644
645
646
# File 'lib/review/rstbuilder.rb', line 644

def link(lines, caption = nil)
  base_parablock('link', lines, caption)
end

#list_body(_id, lines, _lang) ⇒ Object



194
195
196
197
198
# File 'lib/review/rstbuilder.rb', line 194

def list_body(_id, lines, _lang)
  lines.each do |line|
    puts '-' + detab(line)
  end
end

#list_header(id, _caption, _lang) ⇒ Object



189
190
191
192
# File 'lib/review/rstbuilder.rb', line 189

def list_header(id, _caption, _lang)
  puts ".. _#{id}:"
  blank
end

#listnum_body(lines, _lang) ⇒ Object



246
247
248
249
250
251
# File 'lib/review/rstbuilder.rb', line 246

def listnum_body(lines, _lang)
  lines.each_with_index do |line, i|
    puts(i + 1).to_s.rjust(2) + ": #{line}"
  end
  blank
end

#memo(lines, caption = nil) ⇒ Object



608
609
610
# File 'lib/review/rstbuilder.rb', line 608

def memo(lines, caption = nil)
  base_parablock('memo', lines, caption)
end

#nofunc_text(str) ⇒ Object



760
761
762
# File 'lib/review/rstbuilder.rb', line 760

def nofunc_text(str)
  str
end

#noindentObject



490
491
492
# File 'lib/review/rstbuilder.rb', line 490

def noindent
  # TODO
end

#nonum_begin(_level, _label, caption) ⇒ Object



494
495
496
497
# File 'lib/review/rstbuilder.rb', line 494

def nonum_begin(_level, _label, caption)
  puts ".. rubric: #{compile_inline(caption)}"
  blank
end

#nonum_end(level) ⇒ Object



499
500
# File 'lib/review/rstbuilder.rb', line 499

def nonum_end(level)
end

#note(lines, caption = nil) ⇒ Object



604
605
606
# File 'lib/review/rstbuilder.rb', line 604

def note(lines, caption = nil)
  base_parablock('note', lines, caption)
end

#notice(lines, caption = nil) ⇒ Object



648
649
650
# File 'lib/review/rstbuilder.rb', line 648

def notice(lines, caption = nil)
  base_parablock('notice', lines, caption)
end

#ol_beginObject



135
136
137
138
# File 'lib/review/rstbuilder.rb', line 135

def ol_begin
  blank
  @ol_indent += 1
end

#ol_endObject



144
145
146
147
# File 'lib/review/rstbuilder.rb', line 144

def ol_end
  @ol_indent -= 1
  blank
end

#ol_item(lines, _num) ⇒ Object



140
141
142
# File 'lib/review/rstbuilder.rb', line 140

def ol_item(lines, _num)
  puts '  ' * (@ol_indent - 1) + "#. #{join_lines_to_paragraph(lines)}"
end

#paragraph(lines) ⇒ Object



165
166
167
168
169
170
171
172
# File 'lib/review/rstbuilder.rb', line 165

def paragraph(lines)
  pre = ''
  if @in_role
    pre = '   '
  end
  puts pre + join_lines_to_paragraph(lines)
  puts "\n"
end

#planning(lines, caption = nil) ⇒ Object



620
621
622
# File 'lib/review/rstbuilder.rb', line 620

def planning(lines, caption = nil)
  base_parablock('planning', lines, caption)
end

#point(lines, caption = nil) ⇒ Object



652
653
654
# File 'lib/review/rstbuilder.rb', line 652

def point(lines, caption = nil)
  base_parablock('point', lines, caption)
end

#post_paragraphObject



44
45
46
# File 'lib/review/rstbuilder.rb', line 44

def post_paragraph
  ''
end

#practice(lines) ⇒ Object



664
665
666
# File 'lib/review/rstbuilder.rb', line 664

def practice(lines)
  base_parablock('practice', lines, nil)
end

#pre_paragraphObject



40
41
42
# File 'lib/review/rstbuilder.rb', line 40

def pre_paragraph
  ''
end

#quote(lines) ⇒ Object



260
261
262
263
264
# File 'lib/review/rstbuilder.rb', line 260

def quote(lines)
  blank
  puts lines.map { |line| "  #{line}" }.join
  blank
end

#read(lines) ⇒ Object Also known as: lead



174
175
176
177
# File 'lib/review/rstbuilder.rb', line 174

def read(lines)
  puts split_paragraph(lines).map { |line| "  #{line}" }.join
  blank
end

#ref_begin(_level, _label, caption) ⇒ Object



562
563
564
# File 'lib/review/rstbuilder.rb', line 562

def ref_begin(_level, _label, caption)
  common_column_begin('ref', caption)
end

#ref_end(_level) ⇒ Object



566
567
568
# File 'lib/review/rstbuilder.rb', line 566

def ref_end(_level)
  common_column_end('ref')
end

#reference(lines) ⇒ Object



660
661
662
# File 'lib/review/rstbuilder.rb', line 660

def reference(lines)
  base_parablock('reference', lines, nil)
end

#resultObject



88
89
90
# File 'lib/review/rstbuilder.rb', line 88

def result
  solve_nest(@output.string)
end

#security(lines, caption = nil) ⇒ Object



632
633
634
# File 'lib/review/rstbuilder.rb', line 632

def security(lines, caption = nil)
  base_parablock('security', lines, caption)
end

#shoot(lines, caption = nil) ⇒ Object



656
657
658
# File 'lib/review/rstbuilder.rb', line 656

def shoot(lines, caption = nil)
  base_parablock('shoot', lines, caption)
end

#source(lines, caption = nil, _lang = nil) ⇒ Object



735
736
737
# File 'lib/review/rstbuilder.rb', line 735

def source(lines, caption = nil, _lang = nil)
  base_block('source', lines, caption)
end

#sup_begin(_level, _label, caption) ⇒ Object



570
571
572
# File 'lib/review/rstbuilder.rb', line 570

def sup_begin(_level, _label, caption)
  common_column_begin('sup', caption)
end

#sup_end(_level) ⇒ Object



574
575
576
# File 'lib/review/rstbuilder.rb', line 574

def sup_end(_level)
  common_column_end('sup')
end

#table_begin(ncols) ⇒ Object



326
327
# File 'lib/review/rstbuilder.rb', line 326

def table_begin(ncols)
end

#table_endObject



349
350
351
# File 'lib/review/rstbuilder.rb', line 349

def table_end
  blank
end

#table_header(id, caption) ⇒ Object



315
316
317
318
319
320
321
322
323
324
# File 'lib/review/rstbuilder.rb', line 315

def table_header(id, caption)
  unless id.nil?
    blank
    puts ".. _#{id}:"
  end
  blank
  puts ".. list-table:: #{compile_inline(caption)}"
  puts '   :header-rows: 1'
  blank
end

#td(str) ⇒ Object



345
346
347
# File 'lib/review/rstbuilder.rb', line 345

def td(str)
  str
end

#term(lines) ⇒ Object



640
641
642
# File 'lib/review/rstbuilder.rb', line 640

def term(lines)
  base_parablock('term', lines, nil)
end

#texequation(lines, id = nil, caption = '') ⇒ Object



300
301
302
303
304
305
306
307
308
309
310
311
312
313
# File 'lib/review/rstbuilder.rb', line 300

def texequation(lines, id = nil, caption = '')
  if id
    puts ".. _#{id}:"
  end

  puts '.. math::'
  blank
  puts lines.map { |line| "   #{line}" }.join
  blank
  if caption.present?
    puts "   #{caption}"
    blank
  end
end

#text(str) ⇒ Object



723
724
725
# File 'lib/review/rstbuilder.rb', line 723

def text(str)
  str
end

#th(str) ⇒ Object



341
342
343
# File 'lib/review/rstbuilder.rb', line 341

def th(str)
  str
end

#tip(lines, caption = nil) ⇒ Object



612
613
614
# File 'lib/review/rstbuilder.rb', line 612

def tip(lines, caption = nil)
  base_parablock('tip', lines, caption)
end

#tr(rows) ⇒ Object



329
330
331
332
333
334
335
336
337
338
339
# File 'lib/review/rstbuilder.rb', line 329

def tr(rows)
  first = true
  rows.each do |row|
    if first
      puts "   * - #{row}"
      first = false
    else
      puts "     - #{row}"
    end
  end
end

#ul_beginObject



121
122
123
124
# File 'lib/review/rstbuilder.rb', line 121

def ul_begin
  blank
  @ul_indent += 1
end

#ul_endObject



130
131
132
133
# File 'lib/review/rstbuilder.rb', line 130

def ul_end
  @ul_indent -= 1
  blank
end

#ul_item(lines) ⇒ Object



126
127
128
# File 'lib/review/rstbuilder.rb', line 126

def ul_item(lines)
  puts '  ' * (@ul_indent - 1) + "* #{join_lines_to_paragraph(lines)}"
end

#warning(lines, caption = nil) ⇒ Object



676
677
678
# File 'lib/review/rstbuilder.rb', line 676

def warning(lines, caption = nil)
  base_parablock('warning', lines, caption)
end

#world_begin(_level, _label, caption) ⇒ Object



530
531
532
# File 'lib/review/rstbuilder.rb', line 530

def world_begin(_level, _label, caption)
  common_column_begin('world', caption)
end

#world_end(_level) ⇒ Object



534
535
536
# File 'lib/review/rstbuilder.rb', line 534

def world_end(_level)
  common_column_end('world')
end

#xcolumn_begin(_level, _label, caption) ⇒ Object



522
523
524
# File 'lib/review/rstbuilder.rb', line 522

def xcolumn_begin(_level, _label, caption)
  common_column_begin('xcolumn', caption)
end

#xcolumn_end(_level) ⇒ Object



526
527
528
# File 'lib/review/rstbuilder.rb', line 526

def xcolumn_end(_level)
  common_column_end('xcolumn')
end