sandypockets / obsidian-query-control

An experimental Obsidian plugin that adds controls to embedded queries

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Obsidian Query Control

This plugin adds additional functionality to Obsidian's search/query feature. The current version will add a control bar to each embedded query with various actions such as: collapse all, show context, sort, hide title, hide results, render markdown, and copy results.

Controls are added to embedded queries in Live Preview and Reading modes.

Each of the controls have defaults which can be defined in the plugin settings tab. So, if you wanted all embedded queries to render collapsed by default, you would go into the settings and change that default.

If you want to configure the controls on a per embedded query basis, this plugin implements an extended query syntax which allows for this. The full syntax looks like this:

```query
path: foo tag:#obsidian
title: custom query name
collapsed: true | false
context: true | false
hideTitle: true | false
hideResults: true | false
renderMarkdown: true | false
sort: alphabetical | alphabeticalReverse | byModifiedTime | byModifiedTimeReverse | byCreatedTime | byCreatedTimeReverse
```

Each of the extended keys are optional. If a key is not provided, the configured default will be used instead.

Demo

embedded-query-control

Installing via BRAT

Install the BRAT plugin via the Obsidian Plugin Browser and then add the beta repository "nothingislost/obsidian-embedded-query-control"

Manually installing the plugin

  • Copy over main.js, manifest.json to your vault VaultFolder/.obsidian/plugins/obsidian-embedded-query-control/.

About

An experimental Obsidian plugin that adds controls to embedded queries

License:MIT License


Languages

Language:TypeScript 93.9%Language:JavaScript 3.1%Language:CSS 3.1%