掘金常用快捷键

110 阅读1分钟

#,标题

h1

ctrl + b, 加粗 Hello, this is jason ctrl + i, 斜体 Hello, this is jason “>”, 引用

ctrl + k, 超链接 百度 ctrl + d, 删除行

---, 分割线


无序列表(*,-, +)

  • 1
    • 2
    • 3
  • 2

有序列表(数字)

  1. 111
  2. 222

ctrl + shift + k, 代码行 System.out.println("Hello world"); ctrl + shift + c, 代码块

public static void main(String[] args){
    System.out.println("Hello world");
}