2023-05-30 15:02:20 +00:00
|
|
|
import { Root as HTMLRoot } from 'hast'
|
|
|
|
import { toString } from "hast-util-to-string"
|
|
|
|
import { QuartzTransformerPlugin } from "../types"
|
|
|
|
|
|
|
|
export interface Options {
|
|
|
|
descriptionLength: number
|
|
|
|
}
|
|
|
|
|
|
|
|
const defaultOptions: Options = {
|
|
|
|
descriptionLength: 150
|
|
|
|
}
|
|
|
|
|
2023-07-01 20:35:27 +00:00
|
|
|
const escapeHTML = (unsafe: string) => {
|
|
|
|
return unsafe.replaceAll('&', '&').replaceAll('<', '<').replaceAll('>', '>').replaceAll('"', '"').replaceAll("'", ''');
|
|
|
|
}
|
|
|
|
|
2023-06-12 06:26:43 +00:00
|
|
|
export const Description: QuartzTransformerPlugin<Partial<Options> | undefined> = (userOpts) => {
|
|
|
|
const opts = { ...defaultOptions, ...userOpts }
|
|
|
|
return {
|
|
|
|
name: "Description",
|
|
|
|
htmlPlugins() {
|
|
|
|
return [
|
|
|
|
() => {
|
|
|
|
return async (tree: HTMLRoot, file) => {
|
|
|
|
const frontMatterDescription = file.data.frontmatter?.description
|
2023-07-01 20:35:27 +00:00
|
|
|
const text = escapeHTML(toString(tree))
|
2023-06-12 06:26:43 +00:00
|
|
|
|
|
|
|
const desc = frontMatterDescription ?? text
|
|
|
|
const sentences = desc.replace(/\s+/g, ' ').split('.')
|
|
|
|
let finalDesc = ""
|
|
|
|
let sentenceIdx = 0
|
|
|
|
const len = opts.descriptionLength
|
|
|
|
while (finalDesc.length < len) {
|
2023-07-05 01:02:59 +00:00
|
|
|
const sentence = sentences[sentenceIdx]
|
|
|
|
if (!sentence) break
|
|
|
|
finalDesc += sentence + '.'
|
2023-06-12 06:26:43 +00:00
|
|
|
sentenceIdx++
|
|
|
|
}
|
|
|
|
|
|
|
|
file.data.description = finalDesc
|
|
|
|
file.data.text = text
|
2023-05-30 15:02:20 +00:00
|
|
|
}
|
|
|
|
}
|
2023-06-12 06:26:43 +00:00
|
|
|
]
|
|
|
|
}
|
2023-05-30 15:02:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
declare module 'vfile' {
|
|
|
|
interface DataMap {
|
|
|
|
description: string
|
2023-06-08 05:27:32 +00:00
|
|
|
text: string
|
2023-05-30 15:02:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|