// <pre><code class="*">内で書いたスクリプトコードを実行する


$(function(){
  $('code.js').each(function(){
    var t = $(this).text();
    t = t.replace(/&lt;/g, '<');
    t = t.replace(/&gt;/g, '>');
    //$(this).text(t);
    eval(t);
  });
  $('code.html').each(function(){
    var t = $(this).html();
    var code = $('<code />').addClass('html').text(t);
    var pre = $('<pre />').append(code);
    $(this).after(pre);
  });
});

