Releases: oleeskild/obsidian-digital-garden
Release 2.19.0
Release 2.18.0
Add new setting for showing note title inline
Release 2.17.0
Backlinks and local graph support
Added support for local graph and backlinks in notes.
You'll need the latest version of the digitalgarden template for this to work.
The template can be updated via obsidian by going to "Settings > Digital Garden > Site Template > Manage site template > Create PR"
It can be enabled in frontmatter on a per-note basis by specifying either one of these properties:
---
dg-show-backlinks: true
dg-show-local-graph: true
---
To enable it by default on all notes go to "Setting > Digital Garden > Note Settings > Edit" and check the appropriate checkboxes.
Release 2.16.0
This version adds a new command: Add publish flag.
This should make it easier to quickly publish a file, not having to manually write the publish flag in the frontmatter.
Release 2.15.0
Users can now toggle off the ribbon icon in settings. Note that you will need to reload obsidian for these changes to take effect.
This closes Issue 70.
Release 2.14.0
Dataview Support (!)
This version implements support for rendering dataview queries. You need at least version 0.5.39 of the Dataview plugin installed for this to work.
Usage
If a page contains a dataview code block, it should automatically be rendered correctly to the digital garden website.
Ex:
```dataview
list where dg-publish=true
```
Note: Because of a limitation in the dataview API, it does not yet support DataviewJS. This will be added in the future, when the dataview plugin adds support for it.
Huge thanks to @blacksmithgu for releasing the functionality for rendering markdown from a query in version 0.5.39, making this functionality possible.
Release 2.13.1
Fix excalidraw rendering.
The excalidraw library just shipped a breaking change to their library, which in turn broke the rendering this plugin implements.
This version fixes that so that it renders excalidraw correctly. Unfortunately all notes containing excalidrawings needs to be republished.
Release 2.13.0
JPG and SVG support
This release fixed #42 and adds support for embedded and transcluded jpg and svg files.
The following syntax will now render an image when published:
![[myimage.jpg]]
!(image)[myimage.jpg)
![[myvector.svg]]
!(vector)[myvector.svg)
Release 2.12.0
This release fixes #52: There was an issue where a code block containing the syntax for an obsidian comment (/%%.*%%/g) would mess up the note by removing what it wrongly assumed to be a comment.
Release 2.11.0
The plugin now removes Obsidian comments before publishing the note.
Thanks to @vanadium23 for implementing this feature.