Merge pull request #3456 from willnorris/draft
This commit is contained in:
commit
9b50fc9f3b
|
@ -24,6 +24,7 @@ module Jekyll
|
|||
content
|
||||
excerpt
|
||||
excerpt_separator
|
||||
draft?
|
||||
]
|
||||
|
||||
# Post name validator. Post filenames must be like:
|
||||
|
@ -305,6 +306,11 @@ module Jekyll
|
|||
end
|
||||
end
|
||||
|
||||
# Returns if this Post is a Draft
|
||||
def draft?
|
||||
is_a?(Jekyll::Draft)
|
||||
end
|
||||
|
||||
protected
|
||||
|
||||
def extract_excerpt
|
||||
|
|
Loading…
Reference in New Issue