Skip to content

Instantly share code, notes, and snippets.

@hbsnow
Created August 21, 2013 09:06
Show Gist options
  • Save hbsnow/6292077 to your computer and use it in GitHub Desktop.
Save hbsnow/6292077 to your computer and use it in GitHub Desktop.
Liquid で出力される Jekyll 用の日付のフォーマット用フィルタの plugin
# 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