quartz-research-note/quartz/plugins/transformers/description.ts

54 lines
1.4 KiB
TypeScript
Raw Normal View History

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('&', '&amp;').replaceAll('<', '&lt;').replaceAll('>', '&gt;').replaceAll('"', '&quot;').replaceAll("'", '&#039;');
}
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))
const desc = frontMatterDescription ?? text
const sentences = desc.replace(/\s+/g, ' ').split('.')
let finalDesc = ""
let sentenceIdx = 0
const len = opts.descriptionLength
while (finalDesc.length < len) {
finalDesc += sentences[sentenceIdx] + '.'
sentenceIdx++
}
file.data.description = finalDesc
file.data.text = text
2023-05-30 15:02:20 +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
}
}