sophokles18726k downloadsTransform Dataview query results into visually appealing, customizable card layouts.

Transform Dataview query results into visually appealing, customizable card layouts.
datacards language and write a Dataview query:```datacards
TABLE author, rating, cover FROM #books
SORT rating DESC
// Settings
preset: portrait
imageProperty: cover
```
Or create a kanban board:
```datacards
TABLE file.link as "Task", priority, status FROM #tasks
SORT status ASC
// Settings
preset: kanban
```
That's it! Your Dataview results will now display as beautiful cards or interactive kanban boards.
datacards code blocks with Dataview query syntax![[image.jpg]]), and markdown syntaxVisit the documentation site for complete guides, examples, and reference materials:
Note: DataCards is not yet available in the Community Plugins store. Please use BRAT or manual installation until then.
Create a datacards code block with a Dataview query and optional settings:
```datacards
TABLE author, rating, genre, cover FROM #books
SORT rating DESC
WHERE rating >= 4
// Settings
preset: portrait
columns: 8
imageProperty: cover
properties: [author, rating, genre]
```
Important: You must explicitly include all properties you want to display in your Dataview query (including the image property).
See the documentationok for more detailed examples.
If you find DataCards useful and would like to support its development, consider buying me a coffee:
GNU General Public License v3.0 (GPL-3.0)
This project is licensed under the GNU General Public License v3.0 - see the LICENSE file for details.