1.6 KiB
1.6 KiB
title, created_date, updated_date, aliases, tags, person, ref
| title | created_date | updated_date | aliases | tags | person | ref | |||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Stefan Fritsche | 2023-10-22 | 2023-10-22 |
|
|
|
person/stefan_fritsche |
Stefan Fritsche
- 🏷️Tags : #10-2023 #person
📝 Notes
🔗 Links
Touchpoints
const pagesWithQuotes = await Promise.all(
dv
.pages("#person/stefan_fritsche")
.map(pageWithQuote => new Promise(async (resolve, reject) => {
const content = await dv.io.load(pageWithQuote.file.path);
resolve({
link: pageWithQuote.file.link,
content
});
}))
);
// Create an array of pages containing quotes,
// where each page is:
// {
// quotes: [], // array of quotes
// link: { path: '' } // Link
// }
const quotesByPage = pagesWithQuotes.map(({
link,
content
}) => ({
link,
quotes: content
// Split into paragraphs
.split('- ')
// Get only paragraphs that have the #person/firstname_lastname tag
.filter(content => content.includes('#person/stefan_fritsche'))
// Remove the "#person/firstname_lastname" tag from each quote string
.map(content => content.replace('#person/stefan_fritsche', ''))
}));
quotesByPage.forEach(
page =>
page.quotes.forEach(
quote => dv.paragraph(`- ${quote} (${page.link})`)
)
);