JUPYTER 里markdown快捷键
时间: 2025-06-16 08:04:20 浏览: 12
### Jupyter Notebook Markdown Mode Shortcut Keys
In Jupyter Notebook, working efficiently often involves utilizing various shortcut keys. When operating within a Markdown cell, specific shortcuts enhance productivity without needing to switch between modes frequently.
To enter edit mode for a Markdown cell, press `Enter`. Once in this mode:
- Pressing `Shift` + `Enter` runs the current cell and selects the next one.
- Utilizing `Ctrl` + `Enter` allows running the cell while staying focused on it[^3].
For navigating or executing actions related specifically to Markdown content rather than code execution, these shortcuts prove invaluable. However, certain operations like moving cells up or down do not have direct keyboard shortcuts associated with them by default; instead, users might need to rely on the command palette accessible via pressing `Cmd/Ctrl` + `Shift` + `P`, then typing relevant commands such as "move"[^2].
When editing Markdown text inside a cell, standard text editor shortcuts generally apply too, including but not limited to:
- Using `Tab` for indentation.
- Employing `Backspace` to decrease indent level.
It should also be noted that after finishing edits in Markdown mode, escaping back into command mode requires pressing `Esc`.
```python
# This block serves only illustrative purposes regarding how Python code appears,
# since actual markdown does not require syntax highlighting blocks.
print("Remember, Markdown cells contain richly formatted narrative elements.")
```
阅读全文
相关推荐


















