Method: IsoDoc::WordFunction::Comments#move_comment_link_to_from

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


114
115
116
117
118
119
120
# File 'lib/isodoc/word_function/comments.rb', line 114

def move_comment_link_to_from(docxml)
  docxml.xpath('//span[@style="MsoCommentReference"][@from]').each do |x|
    attrs = comment_attributes(docxml, x) || next
    move_comment_link_to_from1(x, attrs[:from])
    insert_comment_cont(attrs[:from], x["to"], x["target"])
  end
end