-
Notifications
You must be signed in to change notification settings - Fork 35
Closed
Labels
Description
-
Find out how to implement a feature that estimates the reading time (according to number of words?)
- https://medium.com/better-programming/how-to-estimate-any-articles-read-time-2a8403f0bd79
- 200 WPM + Python code at https://github.com/assafelovic/reading_time_estimator
- https://help.medium.com/hc/en-us/articles/214991667-Read-time
- "Read time is based on the average reading speed of an adult (roughly 265 WPM). We take the total word count of a post and translate it into minutes, with an adjustment made for images. For posts in Chinese, Japanese and Korean, it's a function of number of characters (500 characters/min) with an adjustment made for images."
- https://lifehacker.com/calculate-the-reading-time-for-any-book-1835121105
- 250 WPM
- https://medium.com/better-programming/how-to-estimate-any-articles-read-time-2a8403f0bd79
-
Implement feature and add it to lazyblorg output
- Potential approach:
- Count characters or words of Org mode original (excluding comments and noexport headings) because it still lacks HTML clutter.
- If character-count: divide by average 5 characters per word to determine WPM.
- Potential approach: