Method: IsoDoc::HtmlFunction::Html#remove_placeholder_paras

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

#remove_placeholder_paras(html) ⇒ Object



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

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