This is an H1
This is an H2
This is an H3
This is an H4
This is an H5
This is an H6
- Bird
- McHale
简单引用1
简单引用2多行引用
嵌套引用
引用中使用Markdown语法。
- 这是第一行列表项。
- 这是第二行列表项。
给出一些例子代码:
return shell_exec("echo $input | $markdown_script");
示例
斜体
斜体
粗体
粗体
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;
}