MarkDownテスト
973 ワード
This is an H1
This is an H2
This is an H3
This is an H4
This is an H5
This is an H6
単純参照1単純参照2
複数行参照
ネストされた参照
参照でMarkdown構文を使用します。
いくつかの例コードを示します.
return shell_exec("echo $input | $markdown_script");
This is baidu baidu
例斜体斜体太字太字
Tables
Are
Cool
col 3 is
right-aligned
$1600
col 2 is
centered
$12
zebra stripes
are neat
$1
public static Object getStaticProperty(String className, String fieldName) throws Exception {
Class> ownerClass = Class.forName(className); // get class
Field field = ownerClass.getField(fieldName); // get filed
Object property = field.get(ownerClass); // get value
return property;
}