Jupyter Markdown Shortcut
.to markdown R to raw 1 to heading 1 2,3,4,5,6 to heading 2,3,4,5,6 Up/K select cell. Jupyter Notebook Keyboard Shortcuts. Pycharm - Markdown syntax for table in Jupyter PyCharm pycharm.
Markdown is a simple text-to-HTML markup language written in plain text. Jupyter notebook recognizes markdown and renders markdown code as HTML. In this section, we present the basic features of markdown.
See Markdown (by John Gruber) and GitHub Markdown Help for more information.
Text
Output | Syntax |
---|---|
emphasis | *emphasis* |
strong | **strong** |
code | `code` |
Headings
Output | Syntax |
---|---|
# Heading 1 | |
Heading 2 | ## Heading 2 |
Heading 3 | ### Heading 3 |
Heading 4 | #### Heading 4 |
Heading 5 | ##### Heading 5 |
Heading 6 | ###### Heading 6 |
Lists
Create an ordered list using numbers:
- Number theory
- Algebra
- Partial differential equations
- Probability
Create an unordered list using an asterisk * for each item:
- Number theory
- Algebra
- Partial differential equations
- Probability
Use indentation to create nested lists:
- Mathematics
- Calculus
- Linear Algebra
- Probability
- Physics
- Classical Mechanics
- Relativity
- Thermodynamics
- Biology
- Diffusion and Osmosis
- Homeostasis
- Immunology
Links
Create a link with the syntax [description](url)
. For example:
creates the link UBC Math.
Images
Include an image using the syntax ![description](url)
. For example:
displays the image
Tables
Create a table by separating entries by pipe characters |:
Python Operator | Description |
---|---|
+ | addition |
- | subtraction |
* | multiplication |
/ | division |
** | power |
The syntax :---:
specifies the alignment (centered in this case) of the columns. See more about GitHub flavoured markdown.
Exercises
- Create a numbered list of the top 5 websites you visit most often and include a link for each site.
- Write a short biography of your favourite mathematician, provide a link to their Wikipedia page and include an image (with a link and description of the source).
- Create a table of all the courses that you have taken in university. Include the columns: course number, course title, year (that you took the class), and instructor name.
Jump to: Command Mode (press Esc to enable), Edit Mode (press Enter to enable)
Enter | enter edit mode |
Shift+Enter | run cell, select below |
Ctrl+Enter | run cell |
Alt+Enter | run cell, insert below |
Y | to code |
M | to markdown |
R | to raw |
1 | to heading 1 |
2,3,4,5,6 | to heading 2,3,4,5,6 |
Up/K | select cell above |
Down/J | select cell below |
A/B | insert cell above/below |
X | cut selected cell |
C | copy selected cell |
Shift+V | paste cell above |
V | paste cell below |
Z | undo last cell deletion |
D | delete selected cell |
Shift+M | merge cell below |
Ctrl+S | Save and Checkpoint |
L | toggle line numbers |
O | toggle output |
Shift+O | toggle output scrolling |
Esc | close pager |
H | show keyboard shortcut help dialog |
I | interrupt kernel |
0 | restart kernel |
Space | scroll down |
Shift+Space | scroll up |
Shift | ignore |
Tab | code completion or indent |
Shift+Tab | tooltip |
Ctrl+] | indent |
Ctrl+[ | dedent |
Ctrl+A | select all |
Ctrl+Z | undo Free software. |
Ctrl+Shift+Z | redo |
Ctrl+Y | redo |
Ctrl+Home | go to cell start |
Ctrl+Up | go to cell start |
Ctrl+End | go to cell end |
Ctrl+Down | go to cell end |
Ctrl+Left | go one word left |
Ctrl+Right | go one word right |
Ctrl+Backspace | delete word before |
Ctrl+Delete | delete word after |
Esc | command mode |
Ctrl+M | command mode |
Ctrl+Shift+minus | split cell |
Ctrl+S | Save and Checkpoint |
Up | move cursor up or previous cell |
Down | move cursor down or next cell |
Ctrl+/ | toggle comment on current or selected lines |
Created by SarthakMenpara on 6/19/2017