From b33f13ccaf4ec14a94ee0ee467dda04cf4981d00 Mon Sep 17 00:00:00 2001
From: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon, 01 Jan 2024 22:20:34 +0000
Subject: [PATCH] fix: dont show last page if folder
---
quartz/plugins/transformers/description.ts | 67 +++++++++++++++------------------
1 files changed, 30 insertions(+), 37 deletions(-)
diff --git a/quartz/plugins/transformers/description.ts b/quartz/plugins/transformers/description.ts
index fa59799..884d5b1 100644
--- a/quartz/plugins/transformers/description.ts
+++ b/quartz/plugins/transformers/description.ts
@@ -1,58 +1,51 @@
-import { PluggableList } from "unified"
-import { Root as HTMLRoot } from 'hast'
+import { Root as HTMLRoot } from "hast"
import { toString } from "hast-util-to-string"
import { QuartzTransformerPlugin } from "../types"
+import { escapeHTML } from "../../util/escape"
export interface Options {
descriptionLength: number
}
const defaultOptions: Options = {
- descriptionLength: 150
+ descriptionLength: 150,
}
-export class Description extends QuartzTransformerPlugin {
- name = "Description"
- opts: Options
+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
+ const text = escapeHTML(toString(tree))
- constructor(opts?: Options) {
- super()
- this.opts = { ...defaultOptions, ...opts }
- }
+ const desc = frontMatterDescription ?? text
+ const sentences = desc.replace(/\s+/g, " ").split(".")
+ let finalDesc = ""
+ let sentenceIdx = 0
+ const len = opts.descriptionLength
+ while (finalDesc.length < len) {
+ const sentence = sentences[sentenceIdx]
+ if (!sentence) break
+ finalDesc += sentence + "."
+ sentenceIdx++
+ }
- markdownPlugins(): PluggableList {
- return []
- }
-
- htmlPlugins(): PluggableList {
- return [
- () => {
- return async (tree: HTMLRoot, file) => {
- const frontMatterDescription = file.data.frontmatter?.description
- const text = toString(tree)
-
- const desc = frontMatterDescription ?? text
- const sentences = desc.replace(/\s+/g, ' ').split('.')
- let finalDesc = ""
- let sentenceIdx = 0
- const len = this.opts.descriptionLength
- while (finalDesc.length < len) {
- finalDesc += sentences[sentenceIdx] + '.'
- sentenceIdx++
+ file.data.description = finalDesc
+ file.data.text = text
}
-
- file.data.description = finalDesc
- file.data.text = text
- }
- }
- ]
+ },
+ ]
+ },
}
}
-declare module 'vfile' {
+declare module "vfile" {
interface DataMap {
description: string
text: string
}
}
-
--
Gitblit v1.10.0