标签: vim escaping
我在vimwiki中输入了这些内容:
here $1 is matched for[[name]]
然后我将wiki转换为HTML:
here \)1 is matched for <a href="">name</a>
问题是如何获得特殊字符的真值,例如$,[[?
$
[[
在Regexp中,我可以使用反斜杠来使用字符的tre值: here \$1 ....
here \$1 ....
但是在vimwiki,我怎么能这样做?