We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69fef53 commit 48ce852Copy full SHA for 48ce852
docusaurus.config.js
@@ -378,7 +378,7 @@ module.exports = {
378
.trim();
379
// Extract the first sentence (ending with . ! or ?) even if it spans multiple lines
380
const sentenceMatch = contentText.match(/^(.*?[.!?])\s/);
381
- if (!result.frontMatter.description.endsWith('.')) result.frontMatter.description = sentenceMatch ? sentenceMatch[1].trim() : contentText;
+ result.frontMatter.description = sentenceMatch ? sentenceMatch[1].trim() : contentText;
382
}
383
384
return result;
0 commit comments