我的大部分笔记都是在 Linux 下的 emacs 中记录到一个大型文本文件中。我希望能够在这个大型文本文件中写下小型 README.project 文件,并将它们指向每个 REAMDE.project 应该所在的某个位置。例如:
touch ~/mydaily.txt
touch /tmp/project1/README.p1
touch /tmp/project2/README.p2
在中~/mydaily.txt
,我希望能够以某种方式标记 README.project 文件:
########################################
# file_pointer_of_some_sorts = /tmp/project1/README.p1
The contents of the README for project1 are here
########################################
Some random comment that is only present in my daily notes.
########################################
# file_pointer_of_some_sorts = /tmp/project2/README.p2
The contents of the README for project2 are here
########################################
这样,每次我想在 README 中更改某些内容时,我只需要在我的大型文件上进行带有注释的更改,目标文件上的内容就会改变。
有什么想法可以使用 emacs org-mode 或任何其他工具来实现这一点吗?