Fading Coder

One Final Commit for the Last Sprint

Home > Tech > Content

Essential Typora Keyboard Shortcuts and Markdown Features

Tech May 7 3

Windows Shortcuts

  • Uonrdered list: - + Space
  • Ordered list: 1. + Space
  • Task list: - [ ] + Space
  • Headers: Ctrl + Number (1-6)
  • Table: Ctrl + T
  • Select line: Ctrl + L
  • Select word: Ctrl + D
  • Select similar text: Ctrl + E
  • Jump to start: Ctrl + Home
  • Jump to end: Ctrl + End
  • Search: Ctrl + F
  • Replace: Ctrl + H
  • Blockquote: > + Space
  • Code block: Ctrl + Alt + F
  • Bold: Ctrl + B
  • Italic: Ctrl + I
  • Underline: Ctrl + U
  • Strikethrough: Alt + Shift + 5
  • Insert image: Drag & drop or Ctrl + Shift + I
  • Insert link: Ctrl + K

Customizing Shortcuts

Modify conf.user.json in Advanced Settings:

"keyBinding": {
  "Code Fences": "Ctrl+Shift+F",
  "Ordered List": "Ctrl+Alt+O",
  "Unordered List": "Ctrl+Alt+U"
}

Special Formatting

Images

Drag images directly or use Ctrl + Shift + I

Emoji

Use colons: :smile: → 😄

Math Formulas

  1. Inline: $E=mc^2$
  2. Block:
$$
\int_a^b f(x)dx
$$

HTML Support

Limited HTML elements:

  • Underline: <u>text</u>
  • Images: <img src="...">
  • Comments: <!-- comment -->

Subscripts/Superscripts

  • Subscript: H~2~O → H₂O
  • Superscript: X^2^ → X²

Highlight

==important== → important

Tags: Typora

Related Articles

Understanding Strong and Weak References in Java

Strong References Strong reference are the most prevalent type of object referencing in Java. When an object has a strong reference pointing to it, the garbage collector will not reclaim its memory. F...

Comprehensive Guide to SSTI Explained with Payload Bypass Techniques

Introduction Server-Side Template Injection (SSTI) is a vulnerability in web applications where user input is improper handled within the template engine and executed on the server. This exploit can r...

Implement Image Upload Functionality for Django Integrated TinyMCE Editor

Django’s Admin panel is highly user-friendly, and pairing it with TinyMCE, an effective rich text editor, simplifies content management significantly. Combining the two is particular useful for bloggi...

Leave a Comment

Anonymous

◎Feel free to join the discussion and share your thoughts.