ipython notebook align table to the left of cell

jupyter-notebook

Solution

Well, yes !

| Name | Description | age         
| :- |-------------: | :-:
|Mary| She is a nice girl.  | 20
| Jackie Junior | He is a very naughty boy. | 5

- `:---` or `---` = left align

- `---:` = right align

- `:---:` = centered

Problem

I have below ipython notebook code (markdown): ``` #### example table |Name|Description| |--|-------------------------------| |Mary |She is a nice girl.| |Jackie |He is a very naughty boy.| ``` The output looks like below: How can I: - Left align the table of the cell, it's center by default now. - Right align the second col text.

Original source

Related problems