I would have hoped there were a \rules not rulesnames
in $:/core/modules/parsers/wikiparser/wikiparser.js, there's this code:
WikiParser.prototype.amendRules = function(type,names) {
names = names || [];
// Define the filter function
var target;
if(type === "only") {
target = true;
} else if(type === "except") {
target = false;
} else {
return;
}
...
Thus, you can use "\rules only ..." AND "\rules except ..."
So, for your goal, use "\rules except wikilinks"
Also, your link to the list of parse rules didn't work. Here's the correct ControlPanel link:
You can find the TWCore code for each rule by searching from $:/AdvancedSearch, Shadows tab for:
$:/core/modules/parsers/wikiparser/rules/
enjoy,
-e