@@ -322,9 +322,10 @@ The user manuals contain a wealth of information. Here we give a quick
322322introduction to four useful features: _ history_ , _ tab completion_ , _ magic
323323functions_ , and _ aliases_ .
324324
325- ** Command history** Like a UNIX shell, the IPython console supports
326- command history. Type the _ up_ and _ down_ cursor keys to navigate previously typed
327- commands:
325+ #### Command history
326+
327+ Like a UNIX shell, the IPython console supports command history. Type the _ up_
328+ and _ down_ cursor keys to navigate previously typed commands:
328329
329330``` ipython
330331In [3]: x = 10
@@ -334,10 +335,12 @@ In [4]: <UP>
334335In [4]: x = 10
335336```
336337
337- ** Tab completion** Tab completion, is a convenient way to explore the
338- structure of any object you’re dealing with. Simply type object_name.\< TAB> to
339- view the object’s attributes. Besides Python objects and keywords, tab
340- completion also works on file and directory names.\*
338+ #### Tab completion
339+
340+ Tab completion is a convenient way to explore the structure of any object
341+ you’re dealing with. Simply type ` object_name. ` \< TAB> to view the object’s
342+ attributes. Besides Python objects and keywords, tab completion also works on
343+ file and directory names.\*
341344
342345``` ipython
343346In [5]: x = 10
@@ -435,9 +438,9 @@ ipdb>
435438{ref}` Chapter on debugging <debugging-chapter> `
436439:::
437440
438- ** Aliases**
441+ #### Aliases
439442
440- Furthermore IPython ships with various _ aliases_ which emulate common UNIX
443+ IPython and Jupyter ship with various _ aliases_ which emulate common UNIX
441444command line tools such as ` ls ` to list files, ` cp ` to copy files and ` rm ` to
442445remove files (a full list of aliases is shown when typing ` alias ` ).
443446
0 commit comments