Org-mode: Make a link as a column?

I tried to create some org file to organize my stuff in emacs, but I cannot figure out how to make a click link in the column view

Currently my org file is as follows.

* Main
:PROPERTIES:
:COLUMNS: %10ITEM %20LINK
:END:
** SUB1
:PROPERTIES:
:LINK: [[foo][bar]]
:END:
** SUB2
:PROPERTIES:
:LINK: [[bar][foo]]
:END:

However, instead of linking to clicks in the column view, I got something like this in the column view

  ITEM     | LINK         |
* Main     |              |
** SUB1    |[[foo][bar]]  |
** SUB2    |[[bar][foo]]  |

Is there a way to make the column view link as usual?

+5
source share

All Articles