From 87cf6bca650a68432b96169840132416b5dd26dc Mon Sep 17 00:00:00 2001 From: jeffreytse Date: Thu, 16 Jul 2020 19:24:05 +0800 Subject: feat: add get reading time function --- _includes/functions/get_reading_time.html | 41 +++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 _includes/functions/get_reading_time.html (limited to '_includes/functions/get_reading_time.html') diff --git a/_includes/functions/get_reading_time.html b/_includes/functions/get_reading_time.html new file mode 100644 index 0000000..d28b69c --- /dev/null +++ b/_includes/functions/get_reading_time.html @@ -0,0 +1,41 @@ +{% if include.article %} + {% assign article = include.article %} +{% endif %} + +{% if include.speed %} + {% assign speed = include.speed %} +{% else %} + {% assign speed = 160 %} +{% endif %} + +{% assign total_mins = article + | number_of_words + | divided_by: speed + | at_least: 1 %} + +{% assign hours = total_mins | divided_by: 60 %} +{% assign mins = total_mins | modulo: 60 %} + +{% assign return = "About" %} + +{% if hours > 0 %} + {% assign unit = "hour" %} + {% if hours > 1 %} + {% assign unit = unit | append: "s" %} + {% endif %} + {% assign return = return + | append: " " + | append: hours + | append: " " + | append: unit %} +{% endif %} + +{% assign unit = "min" %} +{% if mins > 1 %} + {% assign unit = unit | append: "s" %} +{% endif %} +{% assign return = return + | append: " " + | append: mins + | append: " " + | append: unit %} -- cgit v1.2.3