美文网首页程序员
如何用markdown在简书上写文章?

如何用markdown在简书上写文章?

作者: Greenleves | 来源:发表于2020-10-29 14:33 被阅读0次

1 标题

Hello World!

#Hello World!

Hello World!

## Hello World!

Hello World!

### Hello World!

Hello World!

#### Hello World!

Hello World!

##### Hello World!

2 列表

  • List
  • List
  • List
  • List

- List
- List
- List
- List

3 代码

When x = 3, that means x + 2 = 5

When`x = 3`, that means `x + 2 = 5`

Who ate the most donuts this week?

Jeff  15
Sam   11
Robin  6

Jeff 15
Sam 11
Robin 6

A loop in JavaScript:

var i;
for (i=0; i<5; i++) {
  console.log(i);
}

```
var i;
for (i=0; i<5; i++) {
console.log(i);
}
```

What numbers will this print?

4 强调

你好!张飞先生

你好!**张飞**先生

5 斜体

你好!今天是星期四

你好!今天是_星期四_!

6 skip符号\

* 你好,robot!

\* 你好,robot!

7 引用

失败是成功之母!

> 失败是成功之母!

8 链接

http://baidu.com

9 图片

![Screen Shot 2020-10-29 at 2.32.28 PM.png](https://img.haomeiwen.com/i9317011/a324044a083d63ae.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)

10 嵌套列表

  • Fruit
    • Apple
    • Orange
    • Banana
  • Dairy
    • Milk
    • Cheese
* Fruit
  * Apple
  * Orange
  * Banana
* Dairy
 * Milk
 * Cheese

相关文章

网友评论

    本文标题:如何用markdown在简书上写文章?

    本文链接:https://www.haomeiwen.com/subject/hyskvktx.html