Sha256: c92aca11823bd9437a3d05f3b87f6f4d703f847d29da2b169e3dbdbcd5457c08
Contents?: true
Size: 454 Bytes
Versions: 8
Compression:
Stored size: 454 Bytes
Contents
# frozen_string_literal: true module Jekyll module Drops class UnifiedPayloadDrop < Drop mutable true attr_accessor :page, :layout, :content, :paginator attr_accessor :highlighter_prefix, :highlighter_suffix def jekyll JekyllDrop.global end def site @site_drop ||= SiteDrop.new(@obj) end private def fallback_data @fallback_data ||= {} end end end end
Version data entries
8 entries across 8 versions & 1 rubygems