Markdown语法
六级标题 1
2
3
4
5
6
无序列表
- todo1
- todo2
- todo3
- todo4
有序列表
- todo1
- todo2 粗体
- todo3 斜体
- todo4
引用内容加>
羽毛相同的鸟,自会聚在一起。
插入链接
插入图片
表格
Tables | Are | Cool |
---|---|---|
col 3 is | right-aligned | $1600 |
col 2 is | centered | $12 |
zebra stripes | are neat | $1 |
代码
RKLaunchLoadingView *startView = [[RKLaunchLoadingView alloc] init];
[self.window addSubview:startView];
[startView startDone:^{
[UIView animateWithDuration:0.5 animations:^{
startView.alpha = 0.02f;
} completion:^(BOOL finished) {
[startView removeFromSuperview];
}];
}];
var s = "JavaScript syntax highlighting";
alert(s);
var canvas = document.getElementById("canvas");
var context = canvas.getContext("2d");