obsidian-developer-docs
obsidian-developer-docs copied to clipboard
When looking at the [Slider CSS Variables](https://docs.obsidian.md/Reference/CSS+variables/Components/Slider), the `--slider-track-height` is said to be applied, as the name implies, to the slider track height. However, it is also used to configure...
Highlighting on the [docs site](https://docs.obsidian.md/) and [help site](https://help.obsidian.md/) are currently transparent. The variables being used in the `::selection` pseudo element are defined in a scope that it does not have...
Note that this includes an upgrade to Typescript 5. This is working fine on my simple plugin but I'm not sure what kind of breaking changes might be lurking deeper...
- I've noticed that there are still a lot of classes and functions that don't have any description in the Obsidian API documentation. As a result, sometimes I have to...
The broken link: https://help.obsidian.md/User+interface/Workspace/Panes/Linked+pane Found here: https://github.com/obsidianmd/obsidian-developer-docs/blob/3e2c87057d59bdbe7c93aca7157b42c72e77a747/en/Plugins/User%20interface/Workspace.md?plain=1#L130
https://docs.obsidian.md/Reference/TypeScript+API/filemanager/processFrontMatter On the page its not clear how exactly to read or write property values with it. I think this code sample might help ```js // get the current file...
Those `import`s are already in the latest version of the template.
The command `npm install --save-dev svelte svelte-preprocess @tsconfig/svelte esbuild-svelte` installs the latest version of Svelte (4.0), which may introduce a number of additional issues. My current solution is to reference...
This section of the dev docs contains an inaccurate explanation for `Workspace.activeEditor`. https://docs.obsidian.md/Plugins/Releasing/Plugin+guidelines#Avoid+accessing+%60workspace.activeLeaf%60+directly > If you want to access the editor in the active note, use activeEditor instead: > ```ts...