Pastie now auto-senses if line-wrap is a bad or good idea. Feedback?
## mark a section (Learn more)
CmdUtils.CreateCommand({ name: "friday?", homepage: "http://simplelogica.net/", description: "The only question that matters. Inspired by http://isitfriday.biz/", author: { name: "Manuel Gonzalez Noriega", email: "manuel@simplelogica.net"}, description: "Is it friday?", preview: function(pblock) { var d = new Date(); var t = d.getDay(); var r = 'NO'; var s = 2; if (t==5) { r = 'YES'; s = 10; } var pTemplate = "Is it Friday? <strong style='font-size:${s}em;'>${r}</strong>"; var pData = {r: r, s: s}; pblock.innerHTML = CmdUtils.renderTemplate(pTemplate, pData); } });
This paste will be private.
From the Design Piracy series on my blog: