where are we going
Contributors
TABLE WITHOUT ID contributor.name AS Name, contributor.affiliation AS Affiliation
FROM ""
WHERE file.name = this.file.name
FLATTEN contributors AS contributor
LIST WITHOUT ID contributor_order
FROM ""
WHERE file.name = this.file.name
LIMIT 1
What do we aim to produce?
contributed by: Lauren Wagner The primary goal for this day and 2/3rds is to share ideas and put them down together, in a brief format, into the ether. Further chances to work together or produce in other formats will hopefully emerge, if we're lucky.
I'm working on a template that will show authorship of contributors and a changelog to document updates. We can discuss further on Monday afternoon what other elements would be useful for a template.
Changelog
TABLE WITHOUT ID entry.version AS Version, entry.date AS Date, entry.author AS Author, entry.change AS Change
FROM ""
WHERE file.name = this.file.name
FLATTEN changelog AS entry
SORT entry.version ASC
To add a changelog entry, copy the following block into the changelog field in the frontmatter:
- version:
date:
author:
change:
To enable media credits: remove the underscore from _media in the frontmatter and from the Dataview query above, then remove the <!-- and --> comment tags.