-
In org-mode, we can see that
This tree of headlines is created automatically if it doesn't already exist and then the second entry will become a sibling of the first entry. Is there any way to recreate this? Are we able to set multilevel targets? Right now I can only figure out how to set targets for top level entries. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
After reading the code, I see that it returns the first matching headline that can be at any level. It is currently not possible to file under a specific outline path. There is also no way to create a It seems like all of the machinery is in place to easily support |
Beta Was this translation helpful? Give feedback.
After reading the code, I see that it returns the first matching headline that can be at any level. It is currently not possible to file under a specific outline path. There is also no way to create a
datetree
using existing configurations. Currently, we can only recreate the entiredatetree
for every entry.It seems like all of the machinery is in place to easily support
olp
though. The templateheadline
config could be astring|string[]
and when searching for a headline, we could check the path matches by following theparent
pointers inSection
.