# File lib/maruku/input/parse_doc.rb, line 154
  def substitute_markdown_inside_raw_html
    each_element(:raw_html) do |e|
      html = e.parsed_html
      next unless html

      html.process_markdown_inside_elements(self)
    end
  end