Markdownチュートリアル

Shortcuts

Common keyboard shortcuts for Markdown editors

Markdown Editor Keyboard Shortcuts Reference 👀

1. Basic Editing Shortcuts

FunctionWindows/Linux ShortcutmacOS ShortcutDescription
BoldCtrl + BCmd + BMake selected text bold
ItalicCtrl + ICmd + IMake selected text italic
StrikethroughCtrl + Shift + SCmd + Shift + SAdd strikethrough to text
Inline Code`Ctrl + Shift + ```Cmd + Shift + ``Make selected text inline code
Code BlockCtrl + Shift + KCmd + Shift + KInsert code block
LinkCtrl + KCmd + KInsert link
ImageCtrl + Shift + ICmd + Shift + IInsert image

2. Heading Shortcuts

FunctionWindows/Linux ShortcutmacOS ShortcutDescription
H1Ctrl + 1Cmd + 1Make current line H1
H2Ctrl + 2Cmd + 2Make current line H2
H3Ctrl + 3Cmd + 3Make current line H3
H4Ctrl + 4Cmd + 4Make current line H4
H5Ctrl + 5Cmd + 5Make current line H5
H6Ctrl + 6Cmd + 6Make current line H6
Normal TextCtrl + 0Cmd + 0Convert heading to normal text

3. List Shortcuts

FunctionWindows/Linux ShortcutmacOS ShortcutDescription
Unordered ListCtrl + Shift + 8Cmd + Shift + 8Insert unordered list item
Ordered ListCtrl + Shift + 7Cmd + Shift + 7Insert ordered list item
Task ListCtrl + Shift + XCmd + Shift + XInsert task list item
Indent MoreTabTabIncrease list item indent
Indent LessShift + TabShift + TabDecrease list item indent

4. Blockquotes and Horizontal Rules

FunctionWindows/Linux ShortcutmacOS ShortcutDescription
BlockquoteCtrl + Shift + >Cmd + Shift + >Insert blockquote
Horizontal RuleCtrl + Shift + -Cmd + Shift + -Insert horizontal rule

5. Table Shortcuts

FunctionWindows/Linux ShortcutmacOS ShortcutDescription
Insert TableCtrl + Shift + TCmd + Shift + TInsert table
Add RowCtrl + Shift + +Cmd + Shift + +Add new row to table
Delete RowCtrl + Shift + -Cmd + Shift + -Delete row from table
Add ColumnCtrl + Shift + ]Cmd + Shift + ]Add new column to table
Delete ColumnCtrl + Shift + [Cmd + Shift + [Delete column from table

6. Find and Replace

FunctionWindows/Linux ShortcutmacOS ShortcutDescription
FindCtrl + FCmd + FOpen find dialog
ReplaceCtrl + HCmd + HOpen find and replace dialog
Find NextF3Cmd + GFind next match
Find PreviousShift + F3Cmd + Shift + GFind previous match

7. File Operations

FunctionWindows/Linux ShortcutmacOS ShortcutDescription
New FileCtrl + NCmd + NCreate new Markdown file
Open FileCtrl + OCmd + OOpen existing file
Save FileCtrl + SCmd + SSave current file
Save AsCtrl + Shift + SCmd + Shift + SSave file as
Close FileCtrl + WCmd + WClose current file

8. Preview and Export

FunctionWindows/Linux ShortcutmacOS ShortcutDescription
PreviewCtrl + Shift + VCmd + Shift + VOpen preview window
Side PreviewCtrl + K VCmd + K VOpen preview in sidebar
Export HTMLCtrl + Shift + ECmd + Shift + EExport as HTML file
Export PDFCtrl + Shift + PCmd + Shift + PExport as PDF file

9. Editing Assistance

FunctionWindows/Linux ShortcutmacOS ShortcutDescription
UndoCtrl + ZCmd + ZUndo last action
RedoCtrl + YCmd + Shift + ZRedo undone action
CopyCtrl + CCmd + CCopy selected content
CutCtrl + XCmd + XCut selected content
PasteCtrl + VCmd + VPaste clipboard content
Select AllCtrl + ACmd + ASelect all content

10. Navigation Shortcuts

FunctionWindows/Linux ShortcutmacOS ShortcutDescription
Go to LineCtrl + GCmd + GJump to specific line number
Go to FileCtrl + PCmd + PQuick open file
Go to SymbolCtrl + Shift + OCmd + Shift + OJump to symbol in file
Go BackCtrl + UCmd + UGo back to previous position
Go ForwardCtrl + Shift + UCmd + Shift + UGo forward to next position

Tip: Keyboard shortcuts may vary slightly between different editors. Please refer to your specific editor's actual shortcuts. Most modern Markdown editors support these standard shortcuts.