Various Plugins
- Reading Time
Adding reading time estimates to blog posts from @ Jeremy Davis
In your appsettings.json
add a new property ReadingSpeed
and set it to your desired value:
"ReadingSpeed": 100
You can then override the input/_header.cshtml
of your theme and place the calculated time after the tags.
<span>~@Model.GetString("ReadingTime") minutes</span>