Method: IsoDoc::WordFunction::Comments#make_comment_target

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

#make_comment_target(out) ⇒ Object



41
42
43
44
45
46
47
# File 'lib/isodoc/word_function/comments.rb', line 41

def make_comment_target(out)
  out.span **{ style: "MsoCommentReference" } do |s1|
    s1.span **{ lang: "EN-GB", style: "font-size:9.0pt" } do |s2|
      s2.span **{ style: "mso-special-character:comment" }
    end
  end
end