Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Disable Trac wiki links

Tags:

trac

When using Trac it always highlights class names as a reference to a wiki page like this:

MyClass?

How could I disable this? It makes ticket text unreadable.

like image 289
Andrey Minogin Avatar asked Mar 14 '11 08:03

Andrey Minogin


3 Answers

Andrey, you can disable wiki links by adding "ignore_missing_pages" parameter to your trac config in "wiki" section. See docs here: http://trac.edgewall.org/wiki/TracIni

like image 147
Yuri Subach Avatar answered Nov 07 '22 19:11

Yuri Subach


If you use "!MyClass" it should not make a link.

like image 39
heldt Avatar answered Nov 07 '22 19:11

heldt


Ideally, class names should be formatted as code, i.e. {{{MyClass}}}. This would also prevent the auto-linking.

like image 32
Oliver Giesen Avatar answered Nov 07 '22 19:11

Oliver Giesen