Method: #comments
- Defined in:
- lib/isodoc/wordconvert/comments.rb
#comments(div) ⇒ Object
13 14 15 16 17 18 |
# File 'lib/isodoc/wordconvert/comments.rb', line 13 def comments(div) return if @comments.empty? div.div **{ style: "mso-element:comment-list" } do |div1| @comments.each { |fn| div1.parent << fn } end end |