Method: Jekyll::Collection#docs

Defined in:
lib/jekyll/collection.rb

#docsObject

Fetch the Documents in this collection. Defaults to an empty array if no documents have been read in.

Returns an array of Jekyll::Document objects.



24
25
26
# File 'lib/jekyll/collection.rb', line 24

def docs
  @docs ||= []
end