jekyll/lib/jekyll/filters.rb

17 lines
268 B
Ruby

module Jekyll
module Filters
def date_to_string(date)
date.strftime("%d %b %Y")
end
def date_to_xmlschema(date)
date.xmlschema
end
def xml_escape(input)
input.gsub("<", "&lt;").gsub(">", "&gt;")
end
end
end