class Jekyll::PageWithoutAFile

A Jekyll::Page subclass to handle processing files without reading it to determine the page-data and page-content based on Front Matter delimiters.

The class instance is basically just a bare-bones entity with just attributes “dir”, “name”, “path”, “url” defined on it.

Public Instance Methods

read_yaml(*) click to toggle source
# File lib/jekyll/page_without_a_file.rb, line 10
def read_yaml(*)
  @data ||= {}
end