We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I hope OQL can support rendering the note list of the directory structure into the following markdown.
And you can customize the block label's format just like the format: field.
format:
In other words, you can go deep through the directory structure(or in other ways such as tags?) and render multiple times.
tags
Let's see an example ⬇️:
# your oql options name: Daily notes query: path: "'docs" template: "list" badge: true sort: "title" format: "{title}" # new option multiple: labelFormat: '### {index} {relative_path}' # new field {relative_path} field: 'relative_path'
when your directory structure like this
- docs - oh - a.md - thats - b.md - good - c.md
it will be rendered into
### 1 oh - [[a]] ### 2 thats - [[b]] ### 3 good - [[c]]
#26
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I hope OQL can support rendering the note list of the directory structure into the following markdown.
And you can customize the block label's format just like the
format:
field.In other words, you can go deep through the directory structure(or in other ways such as
tags
?) and render multiple times.Let's see an example ⬇️:
when your directory structure like this
it will be rendered into
#26
The text was updated successfully, but these errors were encountered: