markdown基础语法
标题
在Markdown中,如果您需要使用标题,只需要在文本前面添加#即可!如果您想要二级标题的话,添加两个##即可,三级、四级、五级、六级只需要添加对应的#个数就可以了!例如:
# 一级标题
## 二级标题
### 三级标题
#### 四级标题
##### 五级标题
###### 六级标题
注:#和标题文本之间建议保持一个字符的空格,这是最标准的Markdown写法。
列表
Markdown中列表分有序列表和无序列表,其中无序列表只需要在文本前加上 * 或者(-和+)
- 文本一
- 文本二
- 文本三
有序列表需要在本文前加上1. 2. 3.就可以了
1. 文本一
2. 文本二
3. 文本三
链接和图片
Markdown中插入链接只需要使用[链接文本](链接地址)
这样的语法即可,例如:微道云
[微道云](http://vdaoyun.com)
插入图片的用法和链接差不多,只需要使用![图片文本](图片地址)
这样的语法即可,例如:
![banner](http://upload-images.jianshu.io/upload_images/2251942-d3994f9d486ae5fe.jpg?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
引用
一盏灯, 一片昏黄; 一简书, 一杯淡茶。 守着那一份淡定, 品读属于自己的寂寞。 保持淡定, 才能欣赏到最美丽的风景! 保持淡定, 人生从此不再寂寞。
一盏灯, 一片昏黄; 一简书, 一杯淡茶。 守着那一份淡定, 品读属于自己的寂寞。 保持淡定, 才能欣赏到最美丽的风景! 保持淡定, 人生从此不再寂寞。
> 一盏灯, 一片昏黄; 一简书, 一杯淡茶。 守着那一份淡定, 品读属于自己的寂寞。 保持淡定, 才能欣赏到最美丽的风景! 保持淡定, 人生从此不再寂寞。
>> 一盏灯, 一片昏黄; 一简书, 一杯淡茶。 守着那一份淡定, 品读属于自己的寂寞。 保持淡定, 才能欣赏到最美丽的风景! 保持淡定, 人生从此不再寂寞。
表格
Tables | Are | Cool | giid |
---|---|---|---|
col 3 is | right-aligned | $1600 | right-aligned |
col 2 is | centered | $12 | right-aligned |
zebra stripes | are neat | $1 | right-aligned |
以上为Markdown中表格效果,想要实现表格,需采用以下格式:
| Tables | Are | Cool | giid |
| ------------- | ------------- | ----- | ------------- |
| col 3 is | right-aligned | $1600 | right-aligned |
| col 2 is | centered | $12 | right-aligned |
| zebra stripes | are neat | $1 | right-aligned |
代码框
贴入代码格式`Code`
:例如
- (BMKAnnotationView *)mapView:(BMKMapView *)mapView viewForAnnotation:(id <BMKAnnotation>)annotation
{
if ([annotation isKindOfClass:[BMKPointAnnotation class]]) {
BMKPinAnnotationView *newAnnotationView = [[BMKPinAnnotationView alloc]initWithAnnotation:annotation reuseIdentifier:@"myAnnotation"];
newAnnotationView.animatesDrop = YES;
newAnnotationView.annotation = annotation;
//设定popView的高度,根据是否含有缩略图
double popViewH = 60;
if (annotation.subtitle == nil) {
popViewH = 38;
}
QZGCustomCalloutView *calloutView = [[QZGCustomCalloutView alloc] initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH - 100, popViewH)];
[calloutView setImage:FGetImage(@"u5334")];
BMKActionPaopaoView *pView = [[BMKActionPaopaoView alloc] initWithCustomView:calloutView];
pView.frame = CGRectMake(0, 0, SCREEN_WIDTH-100, popViewH);
((BMKPinAnnotationView*)newAnnotationView).paopaoView = nil;
((BMKPinAnnotationView*)newAnnotationView).paopaoView = pView;
newAnnotationView.image = FGetImage(@"tab_work_selected");
return newAnnotationView;
}
return nil;
}