dataview
TABLE WITHOUT ID Month as "Month",
rows.file.link AS Event,
rows.deadline as "deadline",
rows.date as "date",
rows.lead as "person",
rows.participants as "title"
FROM "My/Folder"
Group by (deadline.year + " - " + dateformat(deadline, "MMMM")) as Month
In this table, I would like to add a column where I would like to print the content found within the section “Summary”.
# Summary
Some Text.
Is there a way in dataview to list the content of a specific section/header?
Pure Dataview is bad at displaying pure text, it needs to either be in a bullet list or in an inline field. Just for a summary, I would recommend using an inline field, and styling to your liking using CSS similar to that in the post below:
I would do it with dataviewjs (cannot help here now, sorry) from scratch.
Some relevant code to do with returning text content I whomped together with bot help in the past: