Skip to content

Commit 4050df1

Browse files
committed
Turn bold text into headings
1 parent 41a55b2 commit 4050df1

File tree

1 file changed

+12
-9
lines changed

1 file changed

+12
-9
lines changed

intro/intro.md

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -322,9 +322,10 @@ The user manuals contain a wealth of information. Here we give a quick
322322
introduction to four useful features: _history_, _tab completion_, _magic
323323
functions_, 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
330331
In [3]: x = 10
@@ -334,10 +335,12 @@ In [4]: <UP>
334335
In [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
343346
In [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
441444
command line tools such as `ls` to list files, `cp` to copy files and `rm` to
442445
remove files (a full list of aliases is shown when typing `alias`).
443446

0 commit comments

Comments
 (0)