class Lookbook::PageEntity

def initialize(file_path)

Other tags:
    Api: - private
def initialize(file_path)
  @file_path = Pathname(file_path)
  @base_directories = Engine.page_paths
  @lookup_path = PathUtils.to_lookup_path(relative_file_path)
  @frontmatter, @content = FrontmatterExtractor.call(file_contents)
  @priority_prefixes = true
  @sections = []
end