mirror of
https://github.com/cotes2020/chirpy-starter.git
synced 2025-06-08 17:20:19 +10:00
8 lines
216 B
Ruby
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 |