Skip to content

Instantly share code, notes, and snippets.

View AlbyIanna's full-sized avatar

Alberto Iannaccone AlbyIanna

  • Turin
  • 08:48 (UTC +01:00)
View GitHub Profile
@AlbyIanna
AlbyIanna / icon-grid-dataviewjs.md
Last active August 5, 2025 17:25
Obsidian DataviewJS snippet for displaying Excalidraw icons in a responsive grid.
```dataviewjs
// Get pages and sort alphabetically by filename
const pages = dv.pages("#excalidraw")
  .where(p => p.file.name.includes("icon -"))
  .sort(p => p.file.name);

// Apply grid styles to the container
dv.container.style.display = "grid";
dv.container.style.gridTemplateColumns = "repeat(auto-fill, minmax(160px, 1fr))";