16 lines
353 B
Markdown
16 lines
353 B
Markdown
# Markdown Rules
|
|
|
|
## Tables
|
|
|
|
The tables in markdown should always by ascii char count justified for better readability.
|
|
|
|
Example:
|
|
|
|
| Name | Age | City |
|
|
|------------|-----|---------------|
|
|
| Abhishek | 30 | New York |
|
|
|
|
## Hint
|
|
|
|
Use bash commands to count the chars in each column and add spaces accordingly to justify the table.
|