mirror of
https://gitlab.com/MisterBiggs/brain-quartz.git
synced 2025-07-23 06:41:30 +00:00
.github
content
docs
advanced
features
Docker Support.md
Latex.md
Mermaid diagrams.md
Obsidian compatibility.md
OxHugo compatibility.md
RSS Feed.md
SPA Routing.md
backlinks.md
breadcrumbs.md
callouts.md
darkmode.md
explorer.md
folder and tag listings.md
full-text search.md
graph view.md
i18n.md
index.md
popover previews.md
private pages.md
recent notes.md
syntax highlighting.md
table of contents.md
upcoming features.md
wikilinks.md
images
tags
authoring content.md
build.md
configuration.md
hosting.md
index.md
layout.md
migrating from Quartz 3.md
philosophy.md
setting up your GitHub repository.md
showcase.md
upgrading.md
quartz
.gitattributes
.gitignore
.npmrc
.prettierignore
.prettierrc
CODE_OF_CONDUCT.md
Dockerfile
LICENSE.txt
README.md
globals.d.ts
index.d.ts
package-lock.json
package.json
quartz.config.ts
quartz.layout.ts
tsconfig.json
631 B
631 B
Quartz creates an RSS feed for all the content on your site by generating an index.xml
file that RSS readers can subscribe to. Because of the RSS spec, this requires the baseUrl
property in your configuration to be set properly for RSS readers to pick it up properly.
Configuration
- Remove RSS feed: set the
enableRSS
field ofPlugin.ContentIndex
inquartz.config.ts
to befalse
. - Change number of entries: set the
rssLimit
field ofPlugin.ContentIndex
to be the desired value. It defaults to latest 10 items. - Use rich HTML output in RSS: set
rssFullHtml
field ofPlugin.ContentIndex
to betrue
.