2007年3月25日

google-code-prettifyの実験

Pマークのお陰で余計な手間を食ってしまったが…ちょいと実験してみよう。

<code class="prettyprint">
#include <stdio.h>
#include <stdlib.h>
int
main( int argc, char **argv )
{
printf( "hello world.\n" );
}
</code>
#include <stdio.h>
#include <stdlib.h>
int
main( int argc, char **argv )
{
printf( "hello world.\n" );
}


ん???じゃぁ、 #include 文を取るとどうだ???!

int
main( int argc, char **argv )
{
printf( "hello world.\n" );
}


うーむ。#include 系に弱いなぁ。 <> で囲ってあると、blogger 側が勝手にタグと勘違いするらしい。で、これを &lt;&gt; と書き直すと、今度は prettyprint が判らなくなるらしい。

0 件のコメント:

コメントを投稿