Markdown語法
六級標(biāo)題 1
2
3
4
5
6
無序列表
- todo1
- todo2
- todo3
- todo4
有序列表
- todo1
- todo2 粗體
- todo3 斜體
- todo4
引用內(nèi)容加>
羽毛相同的鳥,自會聚在一起。
插入鏈接
插入圖片

亞里士多德
表格
| 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");