Method: IsoDoc::WordFunction::Body#para_class

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

#para_class(_node) ⇒ Object



65
66
67
68
69
70
71
# File 'lib/isodoc/word_function/body.rb', line 65

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