What I’m trying to do
New to obsidian. I am trying to use dataview(js) with yaml/frontmatter as the main tags as a nosql database, but also want to render the page MD contents below which acts as the styled description section.
example:
---
name: name1
type: type1
function: property1
---
## here is a description
stuff here is *styled*
> and possibly has blockquotes etc
Things I have tried
I thought using dv.io.load would do this but alas it doesn’t render anything
let pages = dv.pagePaths('"data/items"');
pages.forEach(async(page) => {
let currentPage = dv.page(page);
let pageContent = await dv.io.load(currentPage);
dv.paragraph(pageContent);
});
I am not sure if this is possible.