Sha256: 6c0b02a24cf36d52d5a5fe9db62d76d2fd5a17764cb5d122b9e8098b9da0768d

Contents?: true

Size: 377 Bytes

Versions: 1

Compression:

Stored size: 377 Bytes

Contents

{% capture words %}
{{ post.content | number_of_words }}
{% endcapture %}
{%- if site.replace_read_time_with_word_count -%}
{% assign wordThousands = words | at_least: 100 | divided_by: 1000.0 | round: 1 %} 
{{ wordThousands }}k words
{%- else -%}
{% assign minutes = words | divided_by: 160.0 | ceil %}
{{ minutes }} min{% if minutes != 1 %}s{% endif %}
{%- endif- %}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
minimaJake-1.0.10 _includes/custom/read_time_or_words.html