Markdown-Typora学习

Typora 常用快捷键

Ctrl1Ctrl4 文章标题大小

Ctrl B 文本加粗

Ctrl I 文本斜体

Ctrl U 下划线

Shift Alt 5 删除线

Shift Ctrl ~ 行内代码块

Ctrl K 超链接, 比如我的博客

Ctrl T 生成表格, 支持拖拽移动, 网页端表格复制

Name Age Height
Leborn James 36 203
Kawhi Leonard 29 203
Chris Paul 38 185

Ctrl Shift Q 插入引用

这里是插入的内容, 嘤嘤嘤

Ctrl Shift I 插入图片

https://images.unsplash.com/photo-1514888286974-6c03e2ca1dba

Typora其他

引用

参考链接: Golang1 是一个静态编译型语言

上标下标

(a+b)*(a-b) = a^2^ + b^2^

2H~2~ +O~2~ = 2H~2~O

高亮

Go语言的特点就是: ==简单明了==

流程图

  • Flowchart

  • 学习站点: mermaid

    1
    2
    3
    4
    
    graph TB
    base(Go) --> a(simple)
    base(Go) --> b(static type)
    base(Go) --> c(compiled)
    

参考链接