Displays content metadata such as creation date and reading time.
npx quartz plugin add github:quartz-community/content-metaplugins:
- source: github:quartz-community/content-meta
enabled: true
layout:
position: beforeBody
priority: 20For advanced use cases, you can override in TypeScript:
import * as ExternalPlugin from "./.quartz/plugins";
ExternalPlugin.ContentMeta({
showReadingTime: true,
showComma: true,
});| Option | Type | Default | Description |
|---|---|---|---|
showReadingTime |
boolean |
true |
Whether to display the estimated reading time. |
showComma |
boolean |
true |
Whether to display a comma between metadata items. |
See the Quartz documentation for more information.
MIT