Hello, all.
Is there anyone who know how to embed the results from dataviewjs?
```dataviewjs
let pages = dv.pages("#math").where(b => b.difficulty >= 1);
for (let group of pages.groupBy(b => b.material)) {
dv.header(group.key);
dv.list(group.rows.file.link);
}
Now, I got the list of links to the files.
file1
file2
file3
What I want to get is like these
![[file1]]
![[file2]]
![[file3]]
Thnak you in advance.