具有多个存储库的 redmine 项目中 table 内的 Link 个存储库文件

Link repository files inside a table in a redmine project with multiple repositories

我想 link 具有多个存储库的 redmine 项目中的存储库文件。所以我有类似

的东西
source:svn1|/path/to/file

但我想要在 table 内部,所以我需要转义 | 因为它被解释为列分隔符。

|_. File|_.Description|
|source:svn1|/path/to/file|awesome|

我在 link table 中进行修订时遇到了同样的问题。

|_. Revison|_.Description|
|svn1|r758|Bug|

有人有想法吗?

解决方案是使用 <notextile>|</notextile> 转义存储库 link 中的 |。所以

|_.File|_.Description| 
|source:svn1<notextile>|</notextile>/path/to/file|awesome|

完成任务。同样适用于 link 到 table

内的修订
|_.Revison|_.Description|
|svn1<notextile>|</notextile>r758|Bug|