Method: IsoDoc::WordFunction::Body#section_break

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

#section_break(body) ⇒ Object



3
4
5
6
7
# File 'lib/isodoc/word_function/inline.rb', line 3

def section_break(body)
  body.p do |p|
    p.br **{ clear: "all", class: "section" }
  end
end