markdownのテスト
書いた人: noriaki 2007,06月01日(金) 17:22
This is an H1
This is an H2
This is an H3
This is an H4
This is an H5
This is an H6
This is a blockquote with two paragraphs. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aliquam hendrerit mi posuere lectus. Vestibulum enim wisi, viverra nec, fringilla in, laoreet vitae, risus.
Donec sit amet nisl. Aliquam semper ipsum sit amet velit. Suspendisse id sem consectetuer libero luctus adipiscing.
This is a header.
- This is the first list item.
- This is the second list item.
Here's some example code:
return shell_exec("echo $input | $markdown_script");
- Red
- Green
- Blue
- Red
- Green
- Blue
- Red
- Green
- Blue
head3
- Bird
- McHale
- Parish
- Bird
- McHale
- Parish
an example I get 10 times more traffic from Google than from Yahoo or MSN.
hoge hoge hoge hoge
ソースコードのテスト
Ruby
class Foo
def bar
"abcde"
end
endJava
// 1行読み込んで、String型として返す
public static String readLine(){
byte b[] = new byte[1024];
try{
System.in.read(b);
}catch(Exception e){
return null;
}
int i;
for( i = 0 ; b[i] != 0 && i < b.length ; i++ );
return new String(b, 0, i);
}

