diff --git a/README.md b/README.md index 5d509db..81b6d98 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,8 @@ Define rules to display markdown text in notes. This text gets rendered as if it were part of the file, including dataview blocks or Obsidian Bases. Your notes don't get modified or changed, the given markdown text is simply rendered "virtually". Rules can be defined based on folders, tags or properties. The content to be included can be entered directly in the plugin settings, or come from a note in your vault. +This acts as a sort of template, which can be dynamically redefined after the fact. + This is especially useful if you have many notes with the same dataview block. Instead of pasting the dataview codeblock into every note, you can simply add it with this plugin. This prevents unecessary file bloat, while also letting you easily change the text for all notes at the same time. ## Features diff --git a/manifest.json b/manifest.json index de7664d..31e7273 100644 --- a/manifest.json +++ b/manifest.json @@ -3,7 +3,7 @@ "name": "Virtual Content", "version": "1.0.38", "minAppVersion": "1.13.0", - "description": "Display markdown text (including dataview queries or Bases) at the bottom, top or in the sidebar for all notes which match a specified rule, without modifying them.", + "description": "Display markdown text (including dataview queries or Bases) at the bottom, top or in the sidebar for all notes which match a specified rule, without modifying them (sort of like a dynamic template).", "author": "Signynt", "authorUrl": "https://github.com/Signynt", "fundingUrl": "", diff --git a/package.json b/package.json index 6db23f5..99d13b0 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "virtual-footer", "version": "1.0.37", - "description": "Display markdown text (including dataview queries or Bases) at the bottom, top or in the sidebar for all notes which match a specified rule, without modifying them.", + "description": "Display markdown text (including dataview queries or Bases) at the bottom, top or in the sidebar for all notes which match a specified rule, without modifying them (sort of like a dynamic template).", "main": "main.js", "scripts": { "dev": "node esbuild.config.mjs",