Method: IsoDoc::HtmlFunction::Html#remove_placeholder_paras

Defined in:
lib/isodoc/html_function/postprocess.rb

#remove_placeholder_paras(html) ⇒ Object



63
64
65
66
67
68
# File 'lib/isodoc/html_function/postprocess.rb', line 63

def remove_placeholder_paras(html)
  %w(title-section prefatory-section).each do |s|
    html&.at("//div[@class = '#{s}']/p[last()]")&.remove
  end
  html
end