Sha256: 4b62a9307ba81af15bbf226d091ce68ad00060e06e6d82a4f35502933263c70c
Contents?: true
Size: 806 Bytes
Versions: 296
Compression:
Stored size: 806 Bytes
Contents
$(function() { // get javascript source $("#javascript pre").text($("#js").html()); if($("#demo").size() > 0) { // old school chaining... var html = $("#demo").html() .toLowerCase() .replace(/\n|\t|\r/g,'') .replace(/<td/g,'\t\t\t<td') .replace(/<\/td>/g,'</td>\n') .replace(/<th/g,'\t\t\t<th') .replace(/<\/th>/g,'</th>\n') .replace(/<\/tr>/g,'\t\t</tr>') .replace(/<tr>/g,'\n\t\t<tr>\n') .replace(/<thead/g,'\n\t<thead>') .replace(/<\/thead>/g,'\n\t</thead>') .replace(/<tbody/g,'\n\t<tbody') .replace(/<\/tbody>/g,'\n\t</tbody>') .replace(/<\/table>/g,'\n</table>') .replace(/-->/g,'-->\n'); $("#html pre").text(html); } $("pre.javascript").chili(); $("pre.html").chili(); $("pre.css").chili(); });
Version data entries
296 entries across 296 versions & 2 rubygems