玛氪宕·梦魔(Markdown Memo),使用Markdown的云端备忘录,百度IFE的RIA启航班的不合格的作业,才……才没有什么阴谋呢! 源gitee链接https://gitee.com/arathi/MarkdownMemo?_from=gitee_search
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

162 lines
2.8 KiB

10 years ago
**目录**
10 years ago
[TOC]
10 years ago
10 years ago
#Hello world!
##Hello world!
###Hello world!
####Hello world!
#####Hello world!
######Hello world!
10 years ago
###横线等基本语法
10 years ago
----
~~删除线~~
*斜体字*
**强调字体**
> 引用文本 [示例链接](http://localhost/)
10 years ago
###多语言代码高亮
####JS代码 
10 years ago
```javascript
function test(){
console.log("Hello world!");
}
(function(){
var box = function(){
return box.fn.init();
};
box.prototype = box.fn = {
init : function(){
console.log('box.init()');
return this;
},
add : function(str){
alert("add", str);
return this;
},
remove : function(str){
alert("remove", str);
return this;
}
};
box.fn.init.prototype = box.fn;
window.box =box;
})();
var testBox = box();
testBox.add("jQuery").remove("jQuery");
```
10 years ago
####HTML代码
10 years ago
```html
<!DOCTYPE html>
<html>
<head>
<mate charest="utf-8" />
<title>Hello world!</title>
</head>
<body>
<h1>Hello world!</h1>
</body>
</html>
```
10 years ago
###图片
10 years ago
![ddd](./images/X7t2gyC.png)
> 引用:如果想要插入空白换行`即<br />标签`,在插入处先键入两个以上的空格然后回车即可。
----
10 years ago
###列表
10 years ago
####无序列表(横线)
- 列表一
- 列表二
- 列表三
####无序列表(星号)
*
*
*
####有序列表
1. 第一行
2. 第二行
3. 第三行
----
### 绘制表格
| 项目 | 价格 | 数量 |
| -------- | -----: | :----: |
| 计算机 | $1600 | 5 |
| 手机 | $12 | 12 |
| 管线 | $1 | 234 |
First Header | Second Header
------------- | -------------
Content Cell | Content Cell
Content Cell | Content Cell
| First Header | Second Header |
| ------------- | ------------- |
| Content Cell | Content Cell |
| Content Cell | Content Cell |
执行命令:`npm install marked`
----
10 years ago
###科学公式
10 years ago
$$E=mc^2$$
$$\(\sqrt{3x-1}+(1+x)^2\)$$
$$\sin(\alpha)^{\theta}=\sum_{i=0}^{n}(x^i + \cos(f))$$
10 years ago
###绘制流程图
10 years ago
```flow
st=>start: 用户登陆
op=>operation: 登陆操作
cond=>condition: 登陆成功 Yes or No?
e=>end: 进入后台
st->op->cond
cond(yes)->e
cond(no)->op
```
10 years ago
###绘制序列图
10 years ago
```seq
Andrew->China: Says Hello
Note right of China: China thinks\nabout it
China-->Andrew: How are you?
Andrew->>China: I am good thanks!
10 years ago
```
###结束