jekyll/lib/jekyll/drops/excerpt_drop.rb

16 lines
203 B
Ruby

# encoding: UTF-8
module Jekyll
module Drops
class ExcerptDrop < DocumentDrop
def layout
@obj.doc.data["layout"]
end
def excerpt
nil
end
end
end
end