Releases: HiDeoo/starlight-obsidian
[email protected]
[email protected]
Minor Changes
- #37
96f7cef
Thanks @HiDeoo! - Adds support for running multiple instances of the plugin for different Obsidian vaults and configurations.
[email protected]
Minor Changes
-
#34
9079b9b
Thanks @HiDeoo! - Adds support for Astro v5, drops support for Astro v4.⚠️ BREAKING CHANGE: The minimum supported version of Starlight is now0.30.0
.Please follow the upgrade guide to update your project.
v0.5.0
🚨 Breaking Changes
-
Replaces the
copyStarlightFrontmatter
option in favor of the newcopyFrontmatter
option - by @HiDeoo (888b4)The new
copyFrontmatter
option allows for a more fine-grained control over which frontmatter fields are copied from Obsidian notes to the generated pages. Previously, thecopyStarlightFrontmatter
option would either ignore all unsupported properties or copy all known Starlight frontmatter fields. The new option allows you to ignore all unsupported properties (none
), copy all known Starlight frontmatter fields (starlight
), or copy all frontmatter fields (all
). The default behavior behavior remains the same as before, which is to ignore all unsupported properties.If you were previously using the
copyStarlightFrontmatter
option, you will need to update your configuration to use the new option:starlightObsidian({ - copyStarlightFrontmatter: true, + copyFrontmatter: 'starlight' })
🐞 Bug Fixes
- Ensures the
draft
frontmatter field is copied when thecopyFrontmatter
option is set tostarlight
orall
- by @HiDeoo (6969f)
View changes on GitHub
v0.4.9
🐞 Bug Fixes
View changes on GitHub
v0.4.8
🐞 Bug Fixes
View changes on GitHub
v0.4.7
v0.4.6
🐞 Bug Fixes
- Fixes an issue preventing to read Obsidian frontmatter when it included a
null
value - by @HiDeoo (e70d0)