Issue
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.
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
Answered By - jrjc
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.