publishByDefault
- type:
boolean
- default:
true
- required:
false
Description
Set this hierarchy to be published by default.
If set to true, all notes under the hierarchy will be published.
If set to false, only the notes under the hierarchy that have the frontmatter property published
set to true
will be published.
If set as a hash, you can further specify this setting on a per-vault basis. The key is the name of the vault and the value is a boolean value.
Example
- Make all notes under the hierarchy
finance.*
be published by default, if note is in a vault namedpublic
, but not in a vault namedprivate
.- Make all notes under the hierarchy
school.*
be published by default, regardless of the vault.
publishing:
hierarchy:
finance: # for the hierarchy `finance.*`
publishByDefault:
public: true # publish by default in `public` vault
private: false # don't publish by default in `private` vault
school: # for the hierarchy `school.*`
publishByDefault: true # publish by default regardless of the vault
Backlinks