Reputation: 23749
org-mode has the following format for links:
[[<file-name>::<text-to-search>][<link text>]]
What should I do, if <text-to-search>
contains ']' symbol? Like this:
$form['input']
Upvotes: 2
Views: 409
Reputation: 23749
Special symbols must be URL-encoded: instead of [
we should write %5B
and ]
-> %5D
:
[[<file-name>::$form%5B%27input%27%5D][<link text>]]
Upvotes: 2