What I’m trying to do
I have a simple template that I want to insert a backlink based on the folder that the note is located in. For example a new note in Reverse Engineering/Videos To Watch
would have a back link, in the note properties, to Videos To Watch
which is located in Reverse Engineering/a-MOC/Videos To Watch
Things I have tried
The below code works when I put the tp.file.folder function in the note body, but not when I put it in the note properties.
See linked screenshot: https://i.imgur.com/x4feCWE.png
---
moc1: [[<% tp.file.folder(true).split('/')[0] + '/a-MOC/' + tp.file.folder(true).split('/')[1] %>]]
moc2:
tags:
date: <% tp.date.now("YYYY-MM-DD HH:mm") %>
---
[[<% tp.file.folder(true).split('/')[0] + '/a-MOC/' + tp.file.folder(true).split('/')[1] %>]]