Source: site.view [edit]
Function name: mweb
Arguments: word
Description: Word definitions from dictionary at m-w.com
Page type: webl
Render function:  
Module: global

Page source:

// Look up the word from merriam-webster
var P = GetURL(`http://www.merriam-webster.com/dictionary/`+Url_Encode(word)) ? nil;

var s = "";
every d in Elem(P, "div") do
   var c = d.class ? "";
   if c == "sblk" then
      s = s + Text(d) + "<br>"
   end
end;

NewPiece(s, "text/html");