function metadata(attrs) {
let table = [];
for (const property in attrs) {
table.push(`|${property} | ${attrs[property].value} |`);
}
console.log(table);
return md`### Metadata
| Name | Value(s) |
| -------------- | ---------------------------------- |
| Title | **${attrs.title.value}** |
| Summary | ${str_sanitized}|
| Keywords | ${attrs.keywords.value} |
| Postprocessing logs | ${attrs.publisher_postprocess_logs.value} |
| Publisher name | ${attrs.publisher_name.value} |
`;
}