Spaces:
Runtime error
Runtime error
File size: 1,158 Bytes
db5855f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
// @ts-check
/** @typedef {import('../shared/notebook-metadata.ts').INotebookMetadata} INotebookMetadata */
/**
*
* @param {INotebookMetadata} metadata
* @param {boolean} hasError
* @returns {string}
*/
export function toMarkdown(metadata, hasError) {
const { title, imageUrl, path, createdDate, modifiedDate, links, tags } = metadata;
const markdownLinks = Object.entries(links)
.filter(([, link]) => link)
.map(([key, link]) => `[${key}](${link})`);
/** @type {(tags?: string[]) => string} */
const toTagsString = (tags) => tags?.map((v) => `\`${v}\``).join(', ') || 'N/A';
return `
| Notebook | \`${path}\` |
| - | - |
| Valid | ${hasError ? '❌' : '✅'} |
| Title | ${title} |
| Image | ${imageUrl ? `<img src="${imageUrl}" height="100">` : 'N/A'} |
| Created Date | ${createdDate} |
| Modified Date | ${modifiedDate} |
| Links | ${markdownLinks.join(', ')} |
| **Tags:** | |
| Categories | ${toTagsString(tags?.categories)} |
| Tasks | ${toTagsString(tags?.tasks)} |
| Libraries | ${toTagsString(tags?.libraries)} |
| Common | ${toTagsString(tags?.other)} |
`;
}
|