我的议程视图中的组织模式中的标签在其后面显示两个冒号(双冒号)(:symposium::
)。所有其他标签后面只显示一个冒号(:admin:
)。造成这种情况的原因是什么?
答案 0 :(得分:7)
当标记从父级继承时,似乎是这样。我怀疑这是为了区分与标题直接关联的标签和从其父母继承的标签。
使用此示例
# -*- mode: org -*-
* TODO This is a test of inherited :test:
** TODO This gets a double colon
*** TODO This also gets the double colon
** TODO This gets a double colon and an extra tag :test2:
*** TODO This gets a double colon after the extra tag
我在创建所有待办事项列表
时得到此信息Global list of TODO items of type: ALL
Available with `N r': (0)ALL (1)TODO (2)DONE
test: TODO This is a test of inherited :test:
test: TODO This gets a double colon :test::
test: TODO This also gets the double colon :test::
test: TODO This gets a double colon and an extra tag :test::test2:
test: TODO This gets a double colon after the extra tag :test:test2::