Skip to content

Releases: oleeskild/obsidian-digital-garden

Release 2.19.0

16 Oct 15:41
Compare
Choose a tag to compare

Transcluding part of a file using the ![[My Note#Some Header]] syntax is now supported. (This closes #54)

Thanks to @shmuga for making a contribution (#78), adding this functionality.

Release 2.18.0

14 Oct 19:27
Compare
Choose a tag to compare

Add new setting for showing note title inline

Release 2.17.0

13 Oct 12:16
Compare
Choose a tag to compare

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

29 Sep 08:17
Compare
Choose a tag to compare

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

12 Sep 15:10
Compare
Choose a tag to compare

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

17 Jul 13:58
Compare
Choose a tag to compare

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

07 Jul 17:00
Compare
Choose a tag to compare

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

19 Jun 17:16
Compare
Choose a tag to compare

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

19 Jun 16:21
Compare
Choose a tag to compare

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

20 May 16:00
Compare
Choose a tag to compare

The plugin now removes Obsidian comments before publishing the note.
Thanks to @vanadium23 for implementing this feature.