// ==UserScript==
// @name           no-wysiwyg-twiki
// @namespace      http://www.cv.nrao.edu/~jmalone/
// @description    Make the damned 'edit' tab not do wysiwyg
// @include        https://staff.nrao.edu/wiki/bin/view/*
// ==/UserScript==

var links = document.evaluate(
    "//a[@accesskey='e']",
    document,
    null,
    XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,
    null);
for (var i = 0; i < links.snapshotLength; i++) {
    var a = links.snapshotItem(i);
    if (a.href.match(/bin\/edit/)) {
      a.href += ';nowysiwyg=1';
    }
}
