写在前面
Markdown
是一种轻量级的标记性语言~ 笨笨 是在mac
下学习的强烈建议可以使用`Mou`编译器学习
这里是Markdown的官方语言说明(中文版)
这里是Mou编译器官方下载地址
笨笨的学习之路
- 标题
这是一级标题
这是二级标题
这是分割线
这是斜体
这是粗体
这是强调
这是有序列表
- 我
- 是
- 中
- 国
- 人
这是无序列表
- 这是
- 无序
- 列表
这还是无序列表
- 无
- 序
- 列
- 表
这里是引用
我用了你的代码- (CGSize)sizeWithString:(NSString *)string font:(UIFont *)font maxSize:(CGSize)maxSize{};
嵌套引用
-
这里是代码
- (CGSize)sizeWithString:(NSString *)string font:(UIFont *)font maxSize:(CGSize)maxSize
{ NSDictionary *dict = @{NSFontAttributeName : font}; CGSize size = [string boundingRectWithSize:maxSize options:NSStringDrawingUsesLineFragmentOrigin attributes:dict context:nil].size; return size; }
- (CGSize)sizeWithString:(NSString *)string font:(UIFont *)font maxSize:(CGSize)maxSize
{
NSDictionary *dict = @{NSFontAttributeName : font};
CGSize size = [string boundingRectWithSize:maxSize options:NSStringDrawingUsesLineFragmentOrigin attributes:dict context:nil].size;
return size;
}
-
这里要插入图片
我要在这里插入图片
-
这里我要插入超链接
笨笨编程官方微博
更多语法参见:markdown官网
-
连接
This is an example link
This is an example link.
I get 10 times more traffic from Google than from
Yahoo or MSN.
I start my morning with a cup of coffee and
The New York Times.
-
图片
![alt text][id]
[id]: /path/to/img.jpg "Title"
-
代码
I strongly recommend against using any <blink>
tags.
I wish SmartyPants used named entities like —
instead of decimal-encoded entites like —
.
If you want your page to validate under XHTML 1.0 Strict,
you've got to put paragraph tags in your blockquotes:
-
流程图
st=>start: Start
e=>end
op=>operation: My Operation
cond=>condition: Yes or No?
st->op->cond
cons(yes)->e
cons(no)->op
<blockquote>
<p>For example.</p>
</blockquote>