Method: IsoDoc::WordFunction::Body#para_class

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

#para_class(_node) ⇒ Object



55
56
57
58
59
60
61
# File 'lib/isodoc/word_function/body.rb', line 55

def para_class(_node)
  classtype = nil
  classtype = "Note" if @note
  classtype = "MsoCommentText" if in_comment
  classtype = "Sourcecode" if @annotation
  classtype
end