Method: IsoDoc::WordFunction::Body#section_break

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

#section_break(body) ⇒ Object



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

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