mirror of
https://github.com/alrayyes/wiki.git
synced 2025-06-21 04:26:33 +00:00
folder and tag descriptions, re-enable relative pathing
This commit is contained in:
parent
2a17431460
commit
974b0da308
5 changed files with 12 additions and 6 deletions
quartz/plugins/transformers
|
@ -31,7 +31,9 @@ export const Description: QuartzTransformerPlugin<Partial<Options> | undefined>
|
|||
let sentenceIdx = 0
|
||||
const len = opts.descriptionLength
|
||||
while (finalDesc.length < len) {
|
||||
finalDesc += sentences[sentenceIdx] + '.'
|
||||
const sentence = sentences[sentenceIdx]
|
||||
if (!sentence) break
|
||||
finalDesc += sentence + '.'
|
||||
sentenceIdx++
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue