You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
518 B
19 lines
518 B
# Outputs the reading time
|
|
|
|
# Read this in “about 4 minutes”
|
|
# Put into your _plugins dir in your Jekyll site
|
|
# Usage: Read this in about {{ page.content | reading_time }}
|
|
|
|
module ReadingTimeFilter
|
|
def reading_time( input )
|
|
words_per_minute = 180
|
|
|
|
words = input.split.size;
|
|
minutes = ( words / words_per_minute ).floor
|
|
minutes_label = minutes === 1 ? " minute" : " minutes"
|
|
minutes > 0 ? "#{minutes} #{minutes_label}" : "less than 1 minute"
|
|
end
|
|
end
|
|
|
|
Liquid::Template.register_filter(ReadingTimeFilter)
|