Allow per-page override of words_per_minute (#2250)

Different languages usually have different read speeds.
This change is useful for sites with multi-lingual content
This commit is contained in:
iBug ♦ 2019-10-04 22:50:05 +08:00 committed by Michael Rose
parent 69edbfba58
commit a52394c02e

View file

@ -1,4 +1,4 @@
{% assign words_per_minute = site.words_per_minute | default: 200 %}
{% assign words_per_minute = page.words_per_minute | default: site.words_per_minute | default: 200 %}
{% if post.read_time %}
{% assign words = post.content | strip_html | number_of_words %}