module Jekyll::Algolia::Extractor

def self.extract_raw_records(content)

content - The HTML content to parse

node and its headings
Public: Extract raw records from the file, including content for each
def self.extract_raw_records(content)
  AlgoliaHTMLExtractor.run(
    content,
    options: {
      css_selector: Configurator.algolia('nodes_to_index')
    }
  )
end