Files
recentrunes/test.js

10 lines
327 B
JavaScript
Raw Normal View History

2014-06-26 19:41:23 -07:00
asyncTest('Simple', function() {
2014-06-26 22:48:03 -07:00
var context = new rr.Context(mediawiki,
"=== Heading ===\n\
2014-05-20 16:40:35 -07:00
This is a wiki doc.\n\
2014-06-26 22:48:03 -07:00
How about some '''bold and <i>bold italic</i>'''.\n\
I would also love some <nowiki>nowiki <b>foo</b></nowiki>");
var iterable = context.rules['wikidoc'].match(context);
console.log(iterable.next());
2014-05-20 12:49:30 -07:00
});