Is there a way to suppress automatic link of a case to a wiki - FogBugz Knowledge Exchange most recent 30 from http://fogbugz.stackexchange.com2013-05-26T04:17:52Zhttp://fogbugz.stackexchange.com/feeds/question/10766http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://fogbugz.stackexchange.com/questions/10766/is-there-a-way-to-suppress-automatic-link-of-a-case-to-a-wikiIs there a way to suppress automatic link of a case to a wikiSam Warwick2012-09-05T00:56:35Z2012-09-10T07:17:07Z
<p>We often use the abbreviation 'W7' for Windows 7 in the text of our case descriptions as it is used as part of the machine name in many of our test environments. ie. we cannot change the text in the case. So this causes FogBugz to auto-link the case to one of our wikis. Is there any way we can turn it off, or remove the link?
I saw there are some similar questions relating to the auto-linking of 'case n'.</p>
http://fogbugz.stackexchange.com/questions/10766/is-there-a-way-to-suppress-automatic-link-of-a-case-to-a-wiki/10771#10771Answer by Michel de Ruiter for Is there a way to suppress automatic link of a case to a wikiMichel de Ruiter2012-09-06T08:10:01Z2012-09-10T07:17:07Z<p>To remove the links to W7, try a BugMonkey customization like this:</p>
<pre><code>name: Don't link W7
description: Removes the link to Wiki 7 around any W7 text
author: Michel de Ruiter
version: 1.0.0.0
js:
$('.bugevent .body a[href$="?W7"]:contains("W7")').removeAttr('href');
</code></pre>