Skip to content

Instantly share code, notes, and snippets.

@jogHar
Last active October 22, 2021 07:23
Show Gist options
  • Save jogHar/fe30f2a86ea3270c81327b39abe0b1ad to your computer and use it in GitHub Desktop.
Save jogHar/fe30f2a86ea3270c81327b39abe0b1ad to your computer and use it in GitHub Desktop.
Estimate Read Time generator using jekyll
{% assign words = post.content | strip_html | number_of_words %}
{% if words < 360 %} 
  1 min 
{% else %} 
  {{ words | divided_by:180 }} mins 
{% endif %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment