What I’m trying to do
I have a vault with many notes that I would like to pull (i.e. embed) into a single note.
eg.
Note 1
idea: Text of the first note
Note 2
idea: Content of second note
Note 3
idea: Some more content here.
I’d like to consolidate everything in a note like this:
# COMPLETE LIST
Note 1
idea: Text of the first note
Note 2
idea: Content of second note
Note 3
idea: Some more content here
Things I have tried
I have tried using a search queries, such as:
```query
idea
```
but while this finds the notes I need, it returns a collapsed list of matches, while I’d like to see the entire note, without having to click to expand it. (just to be clear, the actual notes are longer than the examples above, so being collapsed hides big part of the content.
I basically need the equivalent of
# Complete List
![[Note 1]]
![[Note 2]]
![[Note 3]]
Is there anything I can add to the query, to make sure the entire note is embedded, instead of just getting a list of matches?