mirror of
https://github.com/cupcakearmy/nicco.io.git
synced 2024-12-22 08:06:29 +00:00
11 lines
314 B
JavaScript
11 lines
314 B
JavaScript
|
import getReadingTime from 'reading-time'
|
||
|
import { toString } from 'mdast-util-to-string'
|
||
|
|
||
|
export function remarkReadingTime() {
|
||
|
return function (tree, { data }) {
|
||
|
const textOnPage = toString(tree)
|
||
|
const readingTime = getReadingTime(textOnPage)
|
||
|
data.astro.frontmatter.readingTime = readingTime
|
||
|
}
|
||
|
}
|