Sha256: 5417da8039713b1188d36ceac715a4083412912b9d8ba67d4e350cb5c971495d
Contents?: true
Size: 425 Bytes
Versions: 15
Compression:
Stored size: 425 Bytes
Contents
# frozen_string_literal: true module Jekyll # 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. class PageWithoutAFile < Page def read_yaml(*) @data ||= {} end end end
Version data entries
15 entries across 15 versions & 1 rubygems