사용자 지정 솔루션을 원하는 경우 다음과 같이 원하는대로 날짜 형식을 지정하는 Jekyll 플러그인을 작성할 수 있습니다 (이 예제는 이탈리아 날짜 용입니다).
module Jekyll
module ItalianDates
MONTHS = {"01" => "gennaio", "02" => "febbraio", "03" => "marzo",
"04" => "aprile", "05" => "maggio", "06" => "giugno",
"07" => "luglio", "08" => "agosto", "09" => "settembre",
"10" => "ottobre", "11" => "novembre", "12" => "dicembre"}
# http://man7.org/linux/man-pages/man3/strftime.3.html
def italianDate(date)
day = time(date).strftime("%e") # leading zero is replaced by a space
month = time(date).strftime("%m")
year = time(date).strftime("%Y")
day+' '+MONTHS[month]+' '+year
end
def html5date(date)
day = time(date).strftime("%d")
month = time(date).strftime("%m")
year = time(date).strftime("%Y")
year+'-'+month+'-'+day
end
end
end
Liquid::Template.register_filter(Jekyll::ItalianDates)
이것을 다음과 같은 파일에 저장 _plugins/italian_dates.rb
하고 템플릿에서 필요에 따라 사용하십시오.
<time datetime="{{page.date | html5date}}">{{page.date | italianDate}}</time>
date_to_string
과 같습니다date_to_xmlschema
( jekyllrb.com/docs/templates 참조 )