Created
August 21, 2013 09:06
-
-
Save hbsnow/6292077 to your computer and use it in GitHub Desktop.
Liquid で出力される Jekyll 用の日付のフォーマット用フィルタの plugin
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Liquid filter | |
# format_date 2013年01月01日 | |
# w3cdtf_date 2013-01-01 | |
module Jekyll | |
module AssetFilter | |
def format_date(date) | |
"#{date.strftime('%Y年%m月%d日')}" | |
end | |
def w3cdtf_date(date) | |
"#{date.strftime('%Y-%m-%d')}" | |
end | |
end | |
end | |
Liquid::Template.register_filter(Jekyll::AssetFilter) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment