Blame view

test/FitNesseRoot/files/javascript/wikiFormatterSupport.js 293 Bytes
fbe3c2bb   Benjamin Renard   First commit
1
2
3
4
5
6
7
8
function FormatWiki(textArea)
{
  var formatter = new WikiFormatter();
  textArea.value = formatter.format(textArea.value);
  textArea.focus();
}

document.write('<input type="button" accesskey="f" value="Format" onClick="FormatWiki(document.f.pageContent)" title="Formats the wiki text">');