2025-04-29 13:48:34 -07:00

8 lines
216 B
Ruby

class Jekyll::PostReader
def read_posts(dir)
read_publishable(dir, "_posts", /.*\.(markdown|md)$/)
end
def read_drafts(dir)
read_publishable(dir, "_drafts", /.*\.(markdown|md)$/)
end
end