码迷,mamicode.com
首页 > 其他好文 > 详细

MarkDown语法学习(二)

时间:2015-03-09 17:38:18      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:markdown   html   语法   

表格

项目 价格 数量
计算机 $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
```













- -

我在这些地方:技术分享 CSDN 技术分享 GitHub 技术分享 微博


MarkDown语法学习(二)

标签:markdown   html   语法   

原文地址:http://blog.csdn.net/zhoumushui/article/details/44156269

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!