Hey,
Whats the best way to obtain the following outcome:
- with a number of *md files in a folder, for each file, create a embedded link for each one in a contents note. eg
[[file1]]
[[file2]]
[[file3]]
…
[[file…nth]]
then…
- wrap each embedded link with:
'```dynamic-embed
[[file1]]
'```dynamic-embed
[[file2]]
'```dynamic-embed
[[file3]]
(NB: the dyanmic-embed code block does have closing ‘```’ but I couldn’t figure out how to render it in this post).
Options
- something in obsidian thats scriptable / hotkeyable (ideally!)
- python something externally - unsure how well the
[[ ]]
links will work unless I use relative addresses. - link each file manually, then use find and replace on each
[[
and]]
- will need to use regex to put in the linebreaks.
Keen for ideas!
Thanks for your help.