The Trans Directory
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

docs(frontmatter): mention dealiasing related fields (#1715)

* Added to the documentation which values of frontmatter are referenced.

* The source code I was looking at seemed to be out of date and the wrong listings were corrected.

* The list of frontmatter was moved to Frontmatter.md and a link was added.

authored by

sou7 and committed by
GitHub
b050162f 6d350500

+52
+2
docs/authoring content.md
··· 35 35 - `draft`: Whether to publish the page or not. This is one way to make [[private pages|pages private]] in Quartz. 36 36 - `date`: A string representing the day the note was published. Normally uses `YYYY-MM-DD` format. 37 37 38 + See [[Frontmatter]] for a complete list of frontmatter. 39 + 38 40 ## Syncing your Content 39 41 40 42 When your Quartz is at a point you're happy with, you can save your changes to GitHub.
+2
docs/plugins/CreatedModifiedDate.md
··· 13 13 14 14 - `priority`: The data sources to consult for date information. Highest priority first. Possible values are `"frontmatter"`, `"git"`, and `"filesystem"`. Defaults to `["frontmatter", "git", "filesystem"]`. 15 15 16 + When loading the frontmatter, the value of [[Frontmatter#List]] is used. 17 + 16 18 > [!warning] 17 19 > If you rely on `git` for dates, make sure `defaultDateType` is set to `modified` in `quartz.config.ts`. 18 20 >
+48
docs/plugins/Frontmatter.md
··· 17 17 > [!warning] 18 18 > This plugin must not be removed, otherwise Quartz will break. 19 19 20 + ## List 21 + 22 + Quartz supports the following frontmatter: 23 + 24 + - title 25 + - `title` 26 + - description 27 + - `description` 28 + - permalink 29 + - `permalink` 30 + - comments 31 + - `comments` 32 + - lang 33 + - `lang` 34 + - publish 35 + - `publish` 36 + - draft 37 + - `draft` 38 + - enableToc 39 + - `enableToc` 40 + - tags 41 + - `tags` 42 + - `tag` 43 + - aliases 44 + - `aliases` 45 + - `alias` 46 + - cssclasses 47 + - `cssclasses` 48 + - `cssclass` 49 + - socialDescription 50 + - `socialDescription` 51 + - socialImage 52 + - `socialImage` 53 + - `image` 54 + - `cover` 55 + - created 56 + - `created` 57 + - `date` 58 + - modified 59 + - `modified` 60 + - `lastmod` 61 + - `updated` 62 + - `last-modified` 63 + - published 64 + - `published` 65 + - `publishDate` 66 + - `date` 67 + 20 68 ## API 21 69 22 70 - Category: Transformer