Method: IsoDoc::WordFunction::Comments#review_note_parse

Defined in:
lib/isodoc/word_function/comments.rb

#review_note_parse(node, out) ⇒ Object



15
16
17
18
19
20
21
# File 'lib/isodoc/word_function/comments.rb', line 15

def review_note_parse(node, out)
  fn = @comments.length + 1
  make_comment_link(out, fn, node)
  @in_comment = true
  @comments << make_comment_text(node, fn)
  @in_comment = false
end