Skip to content

Commit

Permalink
fix(description): first sentence no longer repeats until max length (j…
Browse files Browse the repository at this point in the history
  • Loading branch information
saberzero1 authored Mar 9, 2024
1 parent b30a200 commit 2e9a0c2
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions quartz/plugins/transformers/description.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ export const Description: QuartzTransformerPlugin<Partial<Options> | undefined>
const currentSentence = sentence.endsWith(".") ? sentence : sentence + "."
finalDesc.push(currentSentence)
currentDescriptionLength += currentSentence.length
sentenceIdx++
}
}

Expand Down

0 comments on commit 2e9a0c2

Please sign in to comment.