diff --git a/.eleventy.js b/.eleventy.js index 680d75d..3a83f4d 100644 --- a/.eleventy.js +++ b/.eleventy.js @@ -23,8 +23,8 @@ module.exports = function(eleventyConfig) { // To create a filter to determine duration of post eleventyConfig.addFilter('readTime', (value) => { const content = value - const textOnly = content.split(" ")//content.replace(/(<([^>]+)>)/gi, '') - const readingSpeedPerMin = 300 + const textOnly = content.split(" ") // content.replace(/(<([^>]+)>)/gi, '') + const readingSpeedPerMin = 200 return Math.max(1, Math.floor(textOnly.length / readingSpeedPerMin)) })