博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
markdown 入门知识
阅读量:7239 次
发布时间:2019-06-29

本文共 1779 字,大约阅读时间需要 5 分钟。

目录

markdown支持html标签,一些显示效果可以借助html标签实现

粗体

**粗体**

粗体

斜体

*斜体*

斜体

粗斜体

***粗体斜体结合体***

粗体斜体结合体

删除字

~~18禁勿看~~

18禁勿看

行间代码

`这是行间代码`

这是行间代码

标题

# 一级标题## 二级标题### 三级标题#### 四级标题

超链接

[链接](www.baidu.com "click me")

引用

> 这是引用  nice day>> > 这是引用里的引用

这是引用 nice day

这是引用里的引用

有序列表

1. 有序列表 the first item2. the second item3. the third item4. the fourth item
  1. 有序列表 the first item
  2. the second item
  3. the third item
  4. the fourth item

无序列表

- 无序列表- I love cat- cat love fish- fish love swim
  • 无序列表
  • I love cat
  • cat love fish
  • fish love swim

待办事项

- [x] new year,new future  - [x] climb the hill  - [ ] meet my goddress  - [x] finish  - [ ] no do
  • [x] new year,new future
    • [x] climb the hill
    • [ ] meet my goddress
    • [x] finish
    • [ ] no do

插入图片

![](https://www.jianguoyun.com/static/images/logo.png)

logo.png

脚注

I am sort my note。[^tag1][^tag1]: Can you see me ?

I am sort my note。

链接引用

some userful website like [Google][1],[Baidu][2],[Yahoo][3][1]: www.google.com "Google"[2]: www.baidu.com  "Baidu"[3]: cn.bing.com    "Yahoo"

the userful website like ,,

水平分割线

------

表格

| 表格  | hello | word      || :---- | ----- | --------- || world | work  | perfect   || money | hard  | beautiful |
表格 hello word
world work perfect
money hard beautiful

公式块

$$x^{y^z}=E_e+\frac{a}{b}-\sqrt[3]{4}$$

$$

x^{y^z}=E_e+\frac{a}{b}-\sqrt{4}
$$

  • ^ 表示上标
  • _ 表示下标
  • 上下标的内容多于一个字符,用 {}括成一个整体
  • \frac {分子} {分母}
  • \sqrt [根指数,省略时为2] {被开方数}s

内容目录

[TOC]

HTML 显示

HTML表格 单元格合并

项目1 项目2 项目3
a1 a2
b1 b2 b3
c2 c3
项目1 项目2 项目3
a1 a2
b1 b2 b3
c2 c3

上标 & 下标

210=1024log22=1

210=1024

log22=1

向上取整 & 向下取整

向上取整: ⌈⌉

向下取整: ⌊⌋


  1. Can you see me ?

转载于:https://www.cnblogs.com/whiteHand/p/10752641.html

你可能感兴趣的文章
怎么运行 ASP.NET Core控制台程序
查看>>
IOS蓝牙项目总结
查看>>
django一对多 增 删 改 查
查看>>
Sqoop Export原理和详细流程讲解
查看>>
浅谈对java中锁的理解
查看>>
ASP.NET Core MVC之ViewComponents(视图组件)知多少?
查看>>
在天河二号上对比Julia,Python和R语言
查看>>
Docker容器学习梳理--私有仓库Registry使用
查看>>
arcgis地图服务之 identify 服务
查看>>
取汉子拼音首字母的C#方法
查看>>
C语言 · 求先序遍历
查看>>
java oracle thin 和 oci 连接方式实现多数据库的故障切换
查看>>
使用spring利用HandlerExceptionResolver实现全局异常捕获
查看>>
字符串 上
查看>>
jmeter设置全局变量
查看>>
MySQLi基于面向对象的编程
查看>>
CAAnimation 动画支撑系统
查看>>
读vue-0.6-text-parser.js源码
查看>>
对map进行排序
查看>>
C#趣味程序---百鸡百钱
查看>>