CmdUtils.CreateCommand({
  name: "римичка",
  icon: "http://rimichka.com/favicon.ico",
  homepage: "http://rimichka.com/",
  author: { name: "Evgeni Vasilev", email: "aquilax@gmail.com"},
  license: "GPL",
  description: "Търсене на рими за дадена дума",
  help: "римичка дума",
  takes: {"input": noun_arb_text},
  preview: function( pblock, input ) {
    if (input.text.length > 2){
      var template = "Рими за <em>${name}</em><ul> {for word in data}<li>${%word.wrd%}</li>{/for}</ul>";
      var url = 'http://rimichka.com/?word='+input.text+'&json=1';
      jQuery.getJSON(url, function(data){
        pblock.innerHTML = CmdUtils.renderTemplate(template, {"name": input.text, "data" : data});
      });
    } else {
      pblock.innerHTML = CmdUtils.renderTemplate(template, {"name": input.text, "data" : {}});
    }
  },
  execute: function(input) {
    CmdUtils.setSelection("You selected: "+input.html);
  }
});
