19
17

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Redmine + Markdown でアンスコを含む添付ファイルにリンク

Posted at

Redmine はチケットの説明や注記で attachment:filename のように記述するとチケットの添付ファイルにリンクできます。

がしかし、ファイル名にアンダースコアが2個以上含まれているとうまくリンクされません。例えば次のようなのはダメです。

attachment:あいうえお_かきくけこ_さしすせそ.pdf

01.png

バックスラッシュでエスケープしてもダメなものはダメです。

attachment:あいうえお\_かきくけこ\_さしすせそ.pdf

02.png

ダブルクオートでクオートしつつ、バックスラッシュでエスケープすれば大丈夫です。

attachment:"あいうえお\_かきくけこ\_さしすせそ.pdf"

03.png

19
17
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
19
17

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?