no post date enforcement

This commit is contained in:
Sneupi 2025-04-29 13:48:34 -07:00
parent b2a35b76d8
commit 6dc4f8cbc7

8
_plugins/nodate.rb Normal file
View File

@ -0,0 +1,8 @@
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