MarkDown语法学习(2)

MarkDown语法学习(二)

表格

项目 价格 数量
计算机 $1600 5
手机 $12 12
管线 $1 234

HTML表格

<table><tr> <td></td> </tr></table>

A L E X Z H O U
Z H O U M U S H U I

代码


 private void exitAction() {
        try {
            Intent intent = new Intent();
            ComponentName componentName = new ComponentName("com.android.settings",
                    "com.android.settings.Settings");
            intent.setComponent(componentName);
            startActivity(intent);
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

换行

  • 四个及以上空格加回车。
  • Tab加回车也行。
  • 两个回车也行。
  • <br>

删除线

<del></del>

不要删除我

复选框&单选框

  • [x] Be awesome
  • [ ] Prepare dinner
    • [x] Research recipe
    • [ ] Buy ingredients
    • [ ] Cook recipe
  • [ ] Sleep

HTML复选框

百度
腾讯
阿里巴巴

HTML单选框

北京
深圳
杭州

书写公式

E=mc2

流程图

Created with Raphaël 2.1.2StartYour OperationYes or No?Endyesno
```flow
st=>start: Start
op=>operation: Your Operation
cond=>condition: Yes or No?
e=>end

st->op->cond
cond(yes)->e
cond(no)->op
```













- -

我在这些地方:MarkDown语法学习(2) CSDN MarkDown语法学习(2) GitHub MarkDown语法学习(2) 微博