Method: IsoDoc::Function::Blocks#formula_where

Defined in:
lib/isodoc/function/blocks.rb

#formula_where(dlist, out) ⇒ Object



139
140
141
142
143
144
145
146
147
# File 'lib/isodoc/function/blocks.rb', line 139

def formula_where(dlist, out)
  return unless dlist

  out.p **{ style: "page-break-after:avoid;" } do |p|
    p << @i18n.where
  end
  parse(dlist, out)
  out.parent.at("./dl")["class"] = "formula_dl"
end