summaryrefslogtreecommitdiffstats
path: root/kjsembed/docs/examples/html2text/html2text.js
blob: a8d6dd9a31f0b58d326bde21d50f2f5faf6d5a40 (plain)
1
2
3
4
5
6
7
Factory.load('html2text_plugin.js');

var line = readLine();
while ( line != null ) {
      print( html2text(line) );
      line = readLine();
}